我的WPF应用程序出了问题。
我有一个datagrid(Wpf Toolkit),我必须管理一行验证...如果验证结果为false,我会认为另一行是不可选的。
因此我必须阻止选择我编辑的当前行。
我该怎么办?有什么想法吗?
答案 0 :(得分:0)
路,
你不是第一个提出这个问题的人。它是当前WPF版本的一个主要缺点,其中没有事件,例如用于Selector派生控件的PreviewSelectionChangeEvent。解决这个问题的唯一社区解决方案当然是HACK解决方案。这是方法。
public void OnSelectionChange(object sender, SelectionChangedEventArgs e)
{
// Selector is based class for all selection enabled control
// (not too sure if your datagrid
// derives from the same class, you will need to check).
var selector = e.OriginalSource as Selector;
if (selector == null) return;
// Get the old items and new items from the selection change
// (note, that they are IList type).
// Let's assume that your datagrid will only allow single cell selection only,
// ie. newItems.Count == 1
var newItems = e.AddedItems;
var oldItems = e.RemovedItems;
// May need to check if not null first.
if (oldItems.Count == 1 && newItems.Count == 1)
{
// Checking logic for the first (and only) items.
// Casting the item into our known type.
var myObject = newItems[0] as myType;
// Notice that I reversed the logic, this is because we are
// only interested in when our logic fails and we need to revert
// the selection to the old item,
// otherwise the new item is selected by default
if (!(myObject != null && SomeOtherCondition))
selector.SelectedItem = oldItems[0];
}
}
希望能引导您找到解决方案。