xsharp.eu • WPF button with image error
Page 1 of 1

WPF button with image error

Posted: Thu Sep 14, 2017 7:24 am
by Juraj
Hi,
this code works correctly in C#, in X# not working. Error message in attachment
I use VS Community 2017 15.3.4

<Grid.Resources>
<ImageBrush x:Key="Klienti" ImageSource="Klienti.png" Stretch="UniformToFill"/>
</Grid.Resources>
<Button Name="PBKL" Content="Klienti" Width="100" Height="100" HorizontalAlignment="Left" Margin="50,172,0,0" VerticalAlignment="Top"
Background="{StaticResource Klienti}" VerticalContentAlignment="Bottom" HorizontalContentAlignment="Left" FontSize="16" FontWeight="Bold" Foreground="Blue">
</Button>

Juraj

WPF button with image error

Posted: Thu Sep 14, 2017 8:09 am
by NickFriend
Hi Juraj,

The error refers to "klienti.png", your markup has "Klienti.png". So it looks like either the markup is wrong or for some reason it's being converted internally to lowercase.

Nick