Ghost1372

everything can be handy

TextBox

TextBox control with Content Property

1
2
3
4
5
6
<dev:TextBox Header="TextBox with Content"
PlaceholderText="PlaceHolder...">
<dev:TextBox.Content>
<Button Content="&#xE895;" />
</dev:TextBox.Content>
</dev:TextBox>

or

1
2
3
4
5
6
7
8
9
10
11
<dev:TextBox Header="TextBox with Content"
PlaceholderText="PlaceHolder...">
<dev:TextBox.Content>
<StackPanel Orientation="Horizontal">
<Button Content="&#xE896;" />
<Button>
<FontIcon Glyph="&#xE895;" />
</Button>
</StackPanel>
</dev:TextBox.Content>
</dev:TextBox>

you can run demo and see this feature.

DevWinUI

0%