Can we change the font style of editboxes (double, datetime etc) to underline?

Editors for WPF Forum

Posted 6 years ago by IRSHAD M
Version: 17.2.0665
Avatar

Hi,

I want to change the style of the text/value of doubleeditbox and datetimeeditbox to underline. Do we have TextDecorationsProperty in the editboxes or something similar? so that i can set it to Underline.

Thanks,

Irshad.M

Comments (1)

Posted 6 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar

Hello,

No there's no public TextDecorations property.  The only way you'd be able to set that is to apply an implicit Style for EmbeddedTextBox like this:

<editors:DoubleEditBox>
	<editors:DoubleEditBox.Resources>
		<Style TargetType="editors:EmbeddedTextBox">
			<Setter Property="TextDecorations" Value="Underline" />
		</Style>
	</editors:DoubleEditBox.Resources>
</editors:DoubleEditBox>

The EmbeddedTextBox is what provides the text input interface within the edit box's Template.


Actipro Software Support

The latest build of this product (v24.1.2) was released 12 days ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.