在Windows 10 Phone App中将图像添加到按钮

时间:2015-08-18 11:41:02

标签: windows-phone

我正在尝试将图像添加到按钮中。我想存档像这样的东西

enter image description here

这是我试图做的,但图像不会出现

<StackPanel Orientation = "Horizontal">
   <Button x:Name = "kap2"
        FontFamily = "Arial"
        Content = "Te drejtat dhe lirite themelore"
        Width = "250"
        Height = "50"
            HorizontalAllignment = "Left">
        <Button.Background>
            <ImageBrush ImageSource = "Asses/number/1.png" Stretch="Fill">
            </ImageBrush>
        </Button.Background>
    </Button>
</StackPanel>

1 个答案:

答案 0 :(得分:1)

&#39; Asses&#39;我认为它应该是资产&#39;。 如果这不起作用,请尝试

  

/Assets/number/1.png

问题在于拼写。确保文件夹名称正确且图像名称也正确。