私は非常に単純で基本的なことをしようとしています。私が間違っている場合は修正してください:
シンプルなボタンとそれに関連付けられたメソッドを次のように考えてください。ただし、DrawShapeCanExecute() で戻り値の型を変更すると、次のようなエラー メッセージが表示されます。
bool WpfApplication8.DrawingCanvas.DrawShapeCanExecute(object, System.Windows.Input.CanExecuteRoutedEventArgs)' の戻り値の型が間違っています
public static RoutedCommand DrawShape = new RoutedCommand();
private void DrawShapeCanExecute(object sender, CanExecuteRoutedEventArgs e)
{
e.CanExecute = true;
} **//Isn't this enough to make it enable?**
private void DrawShape_Executed(object sender, ExecutedRoutedEventArgs e)
{
}
その xaml 部分には次のものがあります。
<Button Margin="0,2,2,2" Width="70" Content="Line"
Command="{x:Static local:DrawingCanvas.DrawShape}"
CommandTarget="{Binding RelativeSource={RelativeSource Mode=FindAncestor,
AncestorType={x:Type Window}}, Path=DrawingTarget}"
CommandParameter="Line">
</Button>