私の Windows Phone 7 アプリケーションでは、デフォルトの背景画像を変更するボタンを作成しました。ユーザーはアプリで独自のカスタム スキンを使用できます。それは完璧に機能しました。ただし、ユーザーがアプリを終了して再起動すると、アプリケーションの背景画像がデフォルトに変更されます。しかし、私が必要としていたのは、アプリケーションには、ユーザーが選択した最後の画像がなくても起動されている必要があるということです。の回。誰でもこれで私を助けることができますか?お疲れ様でした!
private void BackgroundBrowserIcon_MouseEnter(object sender, MouseEventArgs e)
{
var PhotoChooser = new PhotoChooserTask();
PhotoChooser.Completed += new EventHandler<PhotoResult>(PhotoChooser_Completed);
PhotoChooser.Show();
}
void PhotoChooser_Completed(object sender, PhotoResult e)
{
{
if (e.TaskResult == TaskResult.OK)
{
System.Windows.Media.Imaging.BitmapImage bmp = new System.Windows.Media.Imaging.BitmapImage();
bmp.SetSource(e.ChosenPhoto);
var app = Application.Current as App;
if (app == null)
return;
var imageBrush = new ImageBrush { ImageSource = bmp, Opacity = 1.0d };
this.LayoutRoot.Background = imageBrush;
app.backchanged = true;
app.appbrush = imageBrush;
}
}
}