TextBox control with Content Property
xml
<dev:TextBox Header="TextBox with Content"
PlaceholderText="PlaceHolder...">
<dev:TextBox.Content>
<Button Content="" />
</dev:TextBox.Content>
</dev:TextBox>or
xml
<dev:TextBox Header="TextBox with Content"
PlaceholderText="PlaceHolder...">
<dev:TextBox.Content>
<StackPanel Orientation="Horizontal">
<Button Content="" />
<Button>
<FontIcon Glyph="" />
</Button>
</StackPanel>
</dev:TextBox.Content>
</dev:TextBox>you can run demo and see this feature.
