在 WPF 中将 TextBox.Background 重置为默认值,以便在系统设置更改时它仍然会更新
我有一个文本框,我希望在将其更改为不同的颜色后将其 Background 属性重置为其默认值。
我尝试将其设置为 SystemColors.WindowBrush,但是,如果更新显示设置以更改此值,则它不会动态反映在 TextBox 中(如果 TextBox .背景尚未被触及)。
知道如何做到这一点吗?
I have a TextBox that I wish to reset its Background property to its default value after changing it to a different colour.
I have tried setting it to SystemColors.WindowBrush
, but then, if the Display Settings are updated to change this value, it doesn't get dynamically reflected in the TextBox (it does normally if TextBox.Background hasn't been touched).
Any idea how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据我对 WPF 绑定系统的理解,将其设置为 DependencyProperty.UnsetValue 应该将其恢复为 WPF,以确定如何处理它。
From what I understand of WPF's binding system, setting it to
DependencyProperty.UnsetValue
should revert it to WPF figuring out what to do with it.对于 Wpf 这条线对我有用:
for Wpf this line work for me: