2
<Button Margin="0,0,5,0" Cursor="Hand"
ToolTip="Search" Command="{Binding SearchButton}"
IsEnabled="{Binding ElementName=SaveButton,Path=IsEnabled,
UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Click" >
<cmd:EventToCommand
PassEventArgsToCommand="False"
Command="{Binding SearchButton}"
/>
</i:EventTrigger>
</i:Interaction.Triggers>
<Button.ContentTemplate>
<DataTemplate>
<Grid>
<Label Visibility="Collapsed">_Search</Label>
<Image Source="/CHKRevAcc;component/Images/search.png" />
</Grid>
</DataTemplate>
</Button.ContentTemplate>
</Button>
ありがとう、しかし、私はどのように私は発射を防ぐことができます上に別のドラッグパネルがある場合。私はそれの上に別のパネルを開き、Alt + sはまだ起動します。 –
私がALT + Sに応答しなくてもよいことがわかっている唯一の方法は、ボタンを無効にするか、コンテナにすることです。 – NathanAW
ああ大丈夫だよ!ありがとう! –