Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何替代方法可用于动态更改文本框中的文本颜色ColorTranslator.FromHtml(#F9DA00)?
ColorTranslator.FromHtml(#F9DA00)
您可以添加属性或样式...
myTextbox.Attributes.Add("style", "color:#000000");
或者
myTextbox.Styles.Add("color", "#000000");