【发布时间】:2014-12-30 00:09:03
【问题描述】:
我正在使用 EmbeddedNavigator 的添加、编辑和删除按钮。我订阅了gridControl1_EmbeddedNavigator_ButtonClick 事件,并在那里检查单击了哪个按钮。
问题是当我编辑一个单元格并按下保存更改时(EndEdit)我看不到新值。
这是我的代码:
private void gridControl1_EmbeddedNavigator_ButtonClick(object sender, DevExpress.XtraEditors.NavigatorButtonClickEventArgs e)
{
if (e.Button.ButtonType == DevExpress.XtraEditors.NavigatorButtonType.EndEdit)
{
if (MessageBox.Show("Do you want to save the changes?", "Save changes?", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question) == DialogResult.Yes)
{
var rowHandle = gridView1.FocusedRowHandle;
// Here if the port is null by default, when I change it to 25
// I still get an empty string
var port = Convert.ToString(gridView1.GetRowCellValue(rowHandle, "ftpPort"));
var ftpConfig = new FtpConfiguration() { ftpPort = port };
// Update and save
context.UpdateFtpConfiguration(ftpConfig);
context.Save();
}
else
e.Handled = true;
}
}
也许我必须先将它们附加到行中,但是如何?
【问题讨论】:
标签: c# .net winforms gridview devexpress