0
I installed the Material Design Xaml package in my project, but I have a question of how to create an icon in Textbox.
I have the following code:
<StackPanel>
<TextBox
Style="{StaticResource MaterialDesignFilledTextFieldTextBox}"
VerticalAlignment="Top"
AcceptsReturn="True"
TextWrapping="Wrap"
MaxWidth="400"
materialDesign:HintAssist.Hint="Test">
</TextBox>
<materialDesign:PackIcon Margin="0,-50,0,0" Kind="User" Foreground="#3e4147" Height="50" Width="50"/>
</StackPanel>
but it doesn’t work, I try to do the same image below
Thanks for the tips, really Canvas helped a lot, I’m starting now in WPF have some good wiki to follow taking away from microsoft ?
– carolzinha
I really like this site https://www.wpf-tutorial.com/Localization/LanguageStatus/pt/ it explains all the elements and what each one does
– megaultron