如何绑定图像宽度和高度WPF

时间:2013-12-08 21:00:20

标签: c# wpf image

我试图控制我的图像高度和宽度,但它无法正常工作。我希望它适用于某些情况32X32或64X64,现在这里是我的代码和我的xaml:

<Image Margin="0,1,5,1" Width="{Binding IconWidth}" Height="{Binding IconHeight}">

我也在我的xaml中尝试这个并且它不起作用:

<Image Margin="0,1,5,1" Width="{Binding Path="IconWidth"}" Height="{Binding Path="IconHeight"}">

我的视图模型中的代码是:

public int IconHeight
    {
        get { return height; }
        set
        {
            height = value;

            RaisePropertyChanged("IconHeight");
        }
    }

    public int IconWidth
    {
        get { return width; }
        set
        {
            width = value;
            RaisePropertyChanged("IconWidth");
        }
    }

每次更改图像尺寸都无法正常工作...... 有人可以帮忙吗?

谢谢

0 个答案:

没有答案