私はこのxamlを持っています
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:this="clr-namespace:WpfApplication1"
Title="MainWindow" Height="350" Width="525" Name="this">
<Grid>
<Grid.CommandBindings>
<CommandBinding Command="{x:Static this:MainWindow.Cmd}" Executed="CommandBinding_Executed"/>
</Grid.CommandBindings>
<Grid.InputBindings>
<MouseBinding Command="{x:Static this:MainWindow.Cmd}" MouseAction="LeftClick"/>
</Grid.InputBindings>
<Rectangle Fill="Yellow"/>
<Rectangle Fill="Green" Margin="50">
<Rectangle.InputBindings>
<MouseBinding Command="NotACommand" MouseAction="LeftClick"/>
</Rectangle.InputBindings>
</Rectangle>
</Grid>
</Window>
およびこのコード ビハインド ファイル:
namespace WpfApplication1
{
public partial class MainWindow : Window
{
static RoutedCommand cmd = new RoutedCommand();
public static RoutedCommand Cmd
{
get { return MainWindow.cmd; }
set { MainWindow.cmd = value; }
}
public MainWindow()
{
InitializeComponent();
}
private void CommandBinding_Executed(object sender, ExecutedRoutedEventArgs e)
{
MessageBox.Show("Cmd");
}
}
}
ご覧のとおり、ウィンドウに Cmd というコマンドがあります。ウィンドウ内には、黄色と緑色の 2 つの長方形があります。コマンド Cmd は、マウスが黄色の四角形でクリックされたときにのみ機能し、緑色の四角形では機能しません。どうすればこれを達成できますか?