使用 OuterGlowBitmapEffect 的 WPF 按钮样式
我已经成功设计了一个按钮的样式,以便有我想要的背景(正常)。但是,我想在内容上创建 OuterGlowBitmapEffect。另外,当我修改样式时,它会恢复为 MouseOver、Pressed 和 HasFocus 的默认值。
这是我想要的图像,如何使用 WPF 样式
I have managed to style a button such that there is a the background I wanted (Normal). However, I want to create an OuterGlowBitmapEffect on the content. Also, when I modify the style, it reverts to the default for MouseOver, Pressed, and HasFocus.
Here is the image of what I want, how could you do this using WPF Styles
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有看到您的代码,我无法确定,但您需要将“OuterGlowBitmapEffect”添加到
MouseOver
、Pressed
和HasFocus
样式以及。所有这些状态都是一个包,需要协同修改。
如果可以的话,请使用 Expression Blend。它具有用于从现有模板和样式创建模板和样式,然后修改样式各个方面的各个组件的选项。
Without seeing your code I can't say for sure, but you need to add the "OuterGlowBitmapEffect" to the
MouseOver
,Pressed
andHasFocus
styles as well.All these states come as a package and need to be modified in concert.
If you can, get hold of Expression Blend. This has options for creating templates and styles from existing ones and then for modifying the individual components of each aspect of the style.