MyApp.DLL で「System.IO.FileNotFoundException」が発生しました
C# コードは次のとおりです。エラー Pointer は LockScreen.SetImageUri(uri) で「これは実行される次のステートメントです」を示していました。
public partial class MainPage : PhoneApplicationPage
{
// Constructor
public MainPage()
{
InitializeComponent();
}
private async void SetBackground1(object sender, RoutedEventArgs e)
{
if (await LockScreenManager.RequestAccessAsync() == LockScreenRequestResult.Granted)
{
var uri = new Uri("ms-appx:///Assets/1.jpg", UriKind.Absolute);
LockScreen.SetImageUri(uri);
}
else
{
MessageBox.Show("You said no, so I can't update your background.");
}
}
}