WPF-Button|IsCancel&&IsDefault
Posted lonelyxmas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF-Button|IsCancel&&IsDefault相关的知识,希望对你有一定的参考价值。
原文:WPF-Button|IsCancel&&IsDefault
Button个别属性
<Button ToolTip="ESC" IsDefault="True" IsCancel="True" Name="capture" Grid.Row="1" Click="Button_Click">
IsCancel属性设置为true时会绑定键盘ESC,按下ESC键相当于点击该button。
IsDefault获取或设置一个值,该值指示是否 Button 是默认按钮。 用户通过按 ENTER 键时调用的默认按钮。
ToolTip提示框弹出的内容,可进行嵌套容器显示图片,如
<Button IsCancel="True" Name="capture" Grid.Row="1" Click="Button_Click">
<Button.ToolTip>
<StackPanel>
<TextBlock>
XXXXXX
</TextBlock>
</StackPanel>
</Button.ToolTip>
<Button.Content>
Capture the Mouse
</Button.Content>
</Button>
以上是关于WPF-Button|IsCancel&&IsDefault的主要内容,如果未能解决你的问题,请参考以下文章