私は Windows ストア アプリケーションに取り組んでいますが、問題が発生しました。
エラーなしで完全に機能するプログラムをコンピューターに残しました。コンピューターから数日離れた後、コンピューターを起動してプログラムを実行しようとしました。すぐにクラッシュし、次のように述べています。InitializeComponent で。
ただし、App.Xaml.cs ファイルで StartPage を OnLaunched メソッドの Mainpage に変更すると、正常に動作します。しかし、ログインページがありません。また、Mainpage から LoginPage にリダイレクトできないか、クラッシュします。
マイ CallStack [外部コード]
EmployeeAssistant.exe!EmployeeAssistant.PagesWithSnappedViews.LoginPage.LoginPage() 49 行目 + 0x8 バイト C# [外部コード] EmployeeAssistant.exe!EmployeeAssistant.App.OnLaunched(Windows.ApplicationModel.Activation.LaunchActivatedEventArgs args) 58 行目 + 0x42 バイト C# [外部コード]コード]
マイ ローカルズ
- - - - - - - - - -編集 - - - - - - - - - -
private readonly ObservableCollection<PropertyInfo> _colorSource = new ObservableCollection<PropertyInfo>();
private string _selectedColorName;
public ObservableCollection<PropertyInfo> ColorSource
{
get { return _colorSource; }
}
public string SelectedColorName
{
get { return _selectedColorName; }
set
{
_selectedColorName = value;
OnPropertyChanged();
}
}
public LoginPage()
{
InitializeComponent();
var colors = typeof(Colors).GetTypeInfo().DeclaredProperties;
foreach (var item in colors)
{
ColorSource.Add(item);
}
}
App.OnLaunched:
/// <summary>
/// Invoked when the application is launched normally by the end user. Other entry points
/// will be used when the application is launched to open a specific file, to display
/// search results, and so forth.
/// </summary>
/// <param name="args">Details about the launch request and process.</param>
protected override void OnLaunched(LaunchActivatedEventArgs args)
{
Frame rootFrame = Window.Current.Content as Frame;
// Do not repeat app initialization when the Window already has content,
// just ensure that the window is active
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
if (args.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
//TODO: Load state from previously suspended application
}
// Place the frame in the current Window
Window.Current.Content = rootFrame;
}
if (rootFrame.Content == null)
{
// When the navigation stack isn't restored navigate to the first page,
// configuring the new page by passing required information as a navigation
// parameter
if (!rootFrame.Navigate(typeof(LoginPage), args.Arguments))
{
throw new Exception("Failed to create initial page");
}
}
// Ensure the current window is active
Window.Current.Activate();
}
何が起こっているのかを確認するためにデバッグしようとすると、LayoutAwarePage と次の行からコードをロードするだけです。次に、InitializeComponent に進み、AccessViolationException を取得します。
何が起こっているのか、おそらくこれを解決する方法を知っている人はいますか?
ニクラス