-2
備註:我剛剛開始接觸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;
}
XAML:從白到黑
<Canvas Name="panelcanvas" Background="White" Margin="47.5,57,327.5,153"/>
背景的變化和圖像不加載。我怎樣才能解決這個問題? 謝謝。
什麼是'英克潘:///資產/ 01.jpeg'? –
圖像的uri。寫錯了嗎? –
您的示例代碼中似乎太多了。 – Cerbrus