Silverlight 按钮在设置样式时不可点击

发布于 2024-11-09 10:28:08 字数 668 浏览 1 评论 0原文

来设置按钮的样式

    <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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余厌 2024-11-16 10:28:08

我认为问题出在透明背景上。

感谢您的帮助

I think the problem comes from the transparent background.

Thanks for your help

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文