更改整个应用程序中的 FocusVisualStyle
在制作 WPF 应用程序时,我想将默认的 FocusVisualStyle (黑色“行进的蚂蚁”边框)更改为其他内容,例如蓝色边框。我想对整个应用程序的每个控件进行此更改。有没有比更改每种类型的控件的默认样式更简单的方法?
谢谢
While making a WPF application I would like to change the default FocusVisualStyle (the black "marching ants" border) to something else, like for example a blue border. I would like to make this change for every control on the entire application. Is there an easier way then changing the default style for every type of control?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,没有简单的方法将样式应用于所有控件。主要问题是默认情况下 WPF 只允许每个控件使用一种样式。
您可以解决这个问题,但无论如何它都需要重新定义所有控件的样式。
请参阅此问题以获取更多信息:
如何在 WPF 中应用多种样式
Unfortunately there's no easy way to apply a style to all controls. The main issue is that by default WPF only allows one style per control.
You can get around this, but it requires redefining the styles of all the controls anyway.
See this question for more info:
How to apply multiple styles in WPF