It works.
<Setter Property="Width" Value="300" /> <Setter Property="Height" Value="300" />
But when I change this, it doesnβt work.
<Setter Property="Width" Value="{Binding ImageSize, Mode=TwoWay}" /> <Setter Property="Height" Value="{Binding ImageSize, Mode=TwoWay}" />
and declare
private Int32 imageSize; public Int32 ImageSize { get { return imageSize; } set { imageSize = value; NotifyPropertyChanged("ImageSize"); } }
What's wrong?
source share