【发布时间】:2015-05-21 22:18:11
【问题描述】:
我正在开发一个 Windows 应用程序,该应用程序的 ListView 包含一堆项目。 当用户单击一个项目时,应用程序会显示该项目的详细信息。这 然后用户有机会编辑这些详细信息。用户应该点击 每次更改后的“保存”按钮,当然这并不总是发生。
如果用户进行了更改但没有点击保存,应用会显示一条消息 框询问他们是否要保存更改。此框包括取消 按钮,如果他们点击取消,我想短路选择 另一个项目并将用户保持在他们正在编辑的项目上。
我找不到执行此操作的方法,如果项目更改但未保存,我会从 itemselectedchanged 事件中显示对话框,如果用户单击取消,我会从事件中删除我的函数并手动更改所选项目,然后我将函数返回给事件,但在此之后事件调用和我手动选择的项目没有被选中。
private bool EnsureSelected()
{
bool continue_ = true;
if (_objectChange)
{
var res = MessageBox.Show("Do you want to save changes?", "Warning", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Warning);
switch (res)
{
case DialogResult.Cancel:
if (!string.IsNullOrEmpty(_selectedKey))
{
listView_Keys.ItemSelectionChanged -= listView_Keys_ItemSelectionChanged;
listView_Keys.Focus();
listView_Keys.Items[_selectedKey].Selected = true;
listView_Keys.ItemSelectionChanged += listView_Keys_ItemSelectionChanged;
}
continue_ = false;
break;
case DialogResult.Yes:
button_Save.PerformClick();
_objectChange = false;
break;
case DialogResult.No:
_objectChange = false;
break;
default:
throw new ArgumentOutOfRangeException();
}
}
return continue_;
}
更新::
我试过这个解决方案:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private ListViewItem currentSelection = null;
private bool pending_changes = false;
private void listView1_ItemSelectionChanged(object sender, ListViewItemSelectionChangedEventArgs e)
{
if (e.Item == currentSelection)
{
// if the current Item gets unselected but there are pending changes
if (!e.IsSelected && pending_changes)
{
var res = MessageBox.Show("Do you want to save changes?", "Warning", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Warning);
switch (res)
{
case DialogResult.Cancel:
// we dont want to change the selected item, so keep it selected
e.Item.Selected = true;
break;
case DialogResult.Yes:
//button_Save.PerformClick();
pending_changes = false;
break;
case DialogResult.No:
pending_changes = false;
break;
default:
throw new ArgumentOutOfRangeException();
}
}
}
else // not the selected button
{
if (!pending_changes && e.IsSelected)
{
// Item may be selected and we save it as the new current selection
currentSelection = e.Item;
}
else if (pending_changes && e.IsSelected)
{
// Item may not be enabled, because there are pending changes
e.Item.Selected = false;
}
}
}
private void Form1_Load(object sender, EventArgs e)
{
listView1.Items[0].Selected = true;
}
private void button1_Click(object sender, EventArgs e)
{
pending_changes = true;
}
}
但这不起作用,第一次挂起的更改为真,消息框调用了两次,第二次没有发生任何事情。
【问题讨论】: