X:使用ControlTemplate时绑定抛出NullReferenceException

时间:2017-08-11 06:49:14

标签: windows xaml uwp

当我编写从按钮继承的Button时,我使用图像设置ControlTemplate,源代码为x:bind到代码隐藏中的字符串属性,如下面的屏幕截图所示:

<Grid x:Name="rectangle1">
    <Image Source="{x:Bind aCheckImage}" //Error Here
            Stretch="UniformToFill"
            HorizontalAlignment="Center"
            VerticalAlignment="Center">
    </Image>
</Grid>

为什么它会在编译时抛出“对象引用未设置为对象实例”的错误。如何解决?

0 个答案:

没有答案