这行得通。
<Setter Property="Width" Value="300" />
<Setter Property="Height" Value="300" />
但是当我改变它时,它不起作用。
<Setter Property="Width" Value="{Binding ImageSize, Mode=TwoWay}" />
<Setter Property="Height" Value="{Binding ImageSize, Mode=TwoWay}" />
并声明
private Int32 imageSize;
public Int32 ImageSize
{
get { return imageSize; }
set
{
imageSize = value;
NotifyPropertyChanged("ImageSize");
}
}
怎么了?