How to set left margin for watermark / Floating Label to avoid colliding with InnerLeftContent ? #279
Replies: 2 comments
-
To be honest, its doesn't get a proper support now. You can try to edit Margin of watermark TextBlock via styles, but i think currently you should place icon leftside of TextBox. E.g: <StackPanel Orientation="Horizontal">
<icons:MaterialIcon .../>
<TextBox ...>
</StackPanel> |
Beta Was this translation helpful? Give feedback.
0 replies
-
Progress can be tracked here: #280 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
inestead of this
in
<TextBox ..... >
<TextBox.InnerLeftContent>
<icons:MaterialIcon
Width="24"
Height="24"
Margin="4"
HorizontalAlignment="Left"
VerticalAlignment="Bottom"
Foreground="{DynamicResource PrimaryHueMidBrush}"
Kind="KeyVariant" />
</TextBox.InnerLeftContent>
Beta Was this translation helpful? Give feedback.
All reactions