Unplanned
Last Updated: 12 Feb 2026 08:47 by Stenly
When the RadWatermarkTextBox control has a label set through the Label property and the dark variation of the Fluent theme is set, hovering over the control will change its visual state and background to white, however, the label will still remain white (default foreground for the dark variation), thus appearing as if it has disappeared.
Unplanned
Last Updated: 26 Feb 2024 12:32 by Stenly
Created by: Stenly
Comments: 0
Category: WatermarkTextBox
Type: Feature Request
1

The RadWatermarkTextBox control updates the position of the floating label when it gets/loses focus. This moves the label to the center or to the top based on whether the control is focused or is losing the focus. This is done via a method that is currently private. 

We can expose the method so that it can be used based on the client's logic.

Currently, the method can be invoked as follows:

Type radWatermarkTextBoxType = typeof(RadWatermarkTextBox);

MethodInfo handleLabelStateChangeMethodInfo = radWatermarkTextBoxType.GetMethod("HandleLabelStateChange", BindingFlags.NonPublic | BindingFlags.Instance);

if (handleLabelStateChangeMethodInfo != null)
{
    handleLabelStateChangeMethodInfo.Invoke(this.radWatermarkTextBoxInstance, new object[1] { false });
}

Unplanned
Last Updated: 23 Jan 2026 21:23 by JJ
Created by: Piotr
Comments: 1
Category: WatermarkTextBox
Type: Feature Request
2
Add support for RadWatermarkTextBox.