UI から削除されたコマンド ソースで CanExecute が呼び出される理由を理解しようとしています。以下は、デモンストレーション用の単純化されたプログラムです。
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="350" Width="525">
<StackPanel>
<ListBox ItemsSource="{Binding Items}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<Button Content="{Binding Txt}"
Command="{Binding Act}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<Button Content="Remove first item" Click="Button_Click" />
</StackPanel>
</Window>
分離コード:
public partial class MainWindow : Window
{
public class Foo
{
static int _seq = 0;
int _txt = _seq++;
RelayCommand _act;
public bool Removed = false;
public string Txt { get { return _txt.ToString(); } }
public ICommand Act
{
get
{
if (_act == null) {
_act = new RelayCommand(
param => { },
param => {
if (Removed)
Console.WriteLine("Why is this happening?");
return true;
});
}
return _act;
}
}
}
public ObservableCollection<Foo> Items { get; set; }
public MainWindow()
{
Items = new ObservableCollection<Foo>();
Items.Add(new Foo());
Items.Add(new Foo());
Items.CollectionChanged +=
new NotifyCollectionChangedEventHandler(Items_CollectionChanged);
DataContext = this;
InitializeComponent();
}
void Items_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
if (e.Action == NotifyCollectionChangedAction.Remove)
foreach (Foo foo in e.OldItems) {
foo.Removed = true;
Console.WriteLine("Removed item marked 'Removed'");
}
}
void Button_Click(object sender, RoutedEventArgs e)
{
Items.RemoveAt(0);
Console.WriteLine("Item removed");
}
}
「最初の項目を削除」ボタンを 1 回クリックすると、次の出力が得られます。
Removed item marked 'Removed'
Item removed
Why is this happening?
Why is this happening?
"なぜこうなった?" ウィンドウの空の部分をクリックするたびに印刷され続けます。
なぜこうなった?また、削除されたコマンド ソースで CanExecute が呼び出されないようにするには、どうすればよいですか?
注: RelayCommand はここにあります。
マイケル・エデンフィールドの質問への回答:
Q1:削除されたボタンで CanExecute が呼び出されたときのコールスタック:
WpfApplication1.exe!WpfApplication1.MainWindow.Foo.get_Act.AnonymousMethod__1(オブジェクト パラメータ) 30 行目 WpfApplication1.exe!WpfApplication1.RelayCommand.CanExecute(オブジェクト パラメータ) 41 行目 + 0x1a バイト PresentationFramework.dll!MS.Internal.Commands.CommandHelpers.CanExecuteCommandSource (System.Windows.Input.ICommandSource commandSource) + 0x8a バイト PresentationFramework.dll!System.Windows.Controls.Primitives.ButtonBase.UpdateCanExecute() + 0x18 バイト PresentationFramework.dll!System.Windows.Controls.Primitives.ButtonBase.OnCanExecuteChanged(object sender, System.EventArgs e) + 0x5 バイト PresentationCore.dll!System.Windows.Input.CommandManager.CallWeakReferenceHandlers(System.Collections.Generic.List handlers) + 0xac バイト PresentationCore.dll!System.Windows.Input.CommandManager.RaiseRequerySuggested(オブジェクト obj) + 0xf バイト
Q2:また、(最初のボタンだけでなく) リストからすべてのボタンを削除すると、この問題は引き続き発生しますか?
はい。