Changing the text color of a disabled RadTextBox
Product Version | Product | Author | Last modified |
---|---|---|---|
Q2 2011 SP1 | RadTreeView for WinForms | Nikolay Diyanov | Oct 4, 2011 |
PROBLEM
Our editor controls (RadDropDownList, RadTextBox, RadSpinEditor, RadMaskedEditBox and RadDateTimePicker) use the standard Microsoft TextBox for the textbox part. You can easily change the BackColor of a TextBox if it is disabled. However, the TextBox implementation does not provide any means for changing the color of the the text of a disabled TextBox instance.
SOLUTION
In order to work around this limiation, you can create a custom TextBox instance that does not use the default text painting, but uses its own text painting instead. Then, you can add this custom instance in the structure of a Rad editor and display it only if the Rad editor becomes disabled.
Let's take and analyze the case of RadTextBox: 1.First, we should create a custom TextBox instance. Our editors use an extended TextBox implementation called HostedTextBoxBase. Therefore, our class should derive from HostedTextBoxBase. In the body of our class, we should override the OnPaint method where we should draw our own text. In addition, we should call the SetStyle in the constructor of the customized HostedTextBoxBase, passing the ControlStyles.UserPaint as a parameter. Please note that the color of the text that we will draw is Red:
2.Now it is time to create a descendant of RadTextBox. In this descendant we should create a RadTextBoxItem - this is an element of our framework that will host the customized HostedTextBoxBase. We can add the created RadTextBoxItem object to the structure of the control in the overridden CreateChildItems method. We should also override the OnEnabledChanged method. In this method we hide the default RadTextBoxItem instance so that the new one can be displayed. Finally, in order to keep the appropriate styling of the control, we should override the ThemeClassName property:
The approach regarding the rest of the editors is similar. Please find a sample project below which demonstrates the approach for RadTextBox, RadSpinEditor, RadMaskedEditBox, RadDateTimePicker and RadDropDownList.
You can download a complete VB and C# project from the following link.