注意:我刚刚开始使用 Windows 8,所以请保持温和。我想将背景图像设置为画布:
private void InsertImage(object sender, RoutedEventArgs e) {
var uri = new System.Uri("inkpen:///Assets/01.jpeg");
var photo_background = new ImageBrush {
ImageSource = new BitmapImage {
UriSource = uri
}
};
panelcanvas.Background = photo_background;
}
xml:
<Canvas Name="panelcanvas" Background="White" Margin="47.5,57,327.5,153"/>
背景从白色变为黑色,图像不加载。我怎样才能解决这个问题?谢谢你。