Silverlight 按钮在设置样式时不可点击
来设置按钮的样式
<Button Canvas.Top="200" Canvas.Left="170" Width="150" Height="150"
Click="Button_Click"
Style="{StaticResource ButtonTestStyle}" />
我正在尝试使用 this :和 this :
<Style x:Key="ButtonTestStyle" TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<TextBlock Text="Test" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
,但是,当我单击该按钮时,不会触发单击事件。
我做错了什么?
感谢您的帮助, 最良好的问候
I'm trying to style a button with this :
<Button Canvas.Top="200" Canvas.Left="170" Width="150" Height="150"
Click="Button_Click"
Style="{StaticResource ButtonTestStyle}" />
and this :
<Style x:Key="ButtonTestStyle" TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<TextBlock Text="Test" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
but, when I click on the button, the click event isn't fired.
What am I doing wrong ?
Thanks for your help,
Best regard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为问题出在透明背景上。
感谢您的帮助
I think the problem comes from the transparent background.
Thanks for your help