如何禁用文本框同时保留其样式
WPF中默认的TextBox
,一旦设置isEnabled为False,整个TextBox
就会变灰。我想保护 TextBox.Text
不被修改,并希望 TextBox
保持其样式(ForeGround 和 Background > 颜色)。除了编写模板来覆盖 TextBox
之外,是否有简单的解决方法可以实现此目的?
The default TextBox
in WPF, once set isEnabled to False, the whole TextBox
is grayed out. I want to protect the TextBox.Text
from being modified and want the TextBox
to remain its style (ForeGround and Background color). Is there an easy work around to achieve this, other than to write the template to override the TextBox
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查或将 TextBox 的属性 IsReadOnly 设置为 true。
Check or set the property IsReadOnly of the TextBox to true.
将 IsReadOnly 设置为 true。
请参阅:http://msdn.microsoft .com/en-us/library/system.windows.controls.primitives.textboxbase.isreadonly.aspx
Set
IsReadOnly
to true.See: http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.textboxbase.isreadonly.aspx