我需要在我的 Windows 商店应用程序中设置图像背景。
但是当我像下面的代码那样做时,图像覆盖了所有控件,我只能看到这个图像而不是控件,如何解决这个问题?
我看不到任何类型的ZIndex
属性,并且设置Canvas.ZIndex
不起作用。
看法:
<Grid.Background>
<ImageBrush ImageSource="{Binding BackgroundSource}" />
</Grid.Background>
视图模型:
private string _backgroundSource;
public string BackgroundSource
{
get { return _backgroundSource; }
set { _backgroundSource = value; RaisePropertyChanged(() => BackgroundSource); }
}
和
BackgroundSource = "Assets/Background/White.png";