我有一個小問題,我想改變我的應用程序的背景與C#。 我試過這段代碼:背景圖像Windows Phone 7
var app = Application.Current as App;
var imageBrush = new ImageBrush
{
ImageSource = new BitmapImage(new Uri(imageName, UriKind.Relative))
};
app.RootFrame.Background = imageBrush;
但它不工作,背景是暗..我試圖做的:
app.RootFrame.Background = new SolidColorBrush(Colors.Blue);
而且效果很好。所以,我不明白問題出在哪裏,我的形象是480×800像素和我設置生成操作到內容和複製到輸出目錄到複製如果新。
感謝所有
使用的ImageBrush設置圖像作爲backgorund –