I have a WPF application in which I try to rename a button like that << Précédent
<Button Content="Suivant >>" Background="#FFF9F7F7" Margin="0,0,100,8"
HorizontalAlignment="Right" Width="75" Height="22" VerticalAlignment="Bottom"
RenderTransformOrigin="0.5,0" BorderBrush="CadetBlue" BorderThickness="2" />
<Button Content="<< Précédent" Background="White" Margin="0,0,180,8"
HorizontalAlignment="Right" Width="75" Height="22" VerticalAlignment="Bottom"
BorderBrush="CadetBlue" BorderThickness="2" />
But an error appears in the second button name
- Why doesn't this work?
- How can i fix it?