基本的に 2 つのウィンドウ (ログイン ウィンドウとダッシュボード ウィンドウ) を持つ WPF アプリケーションに問題があり、これらのウィンドウを読み込むと断続的に null 参照例外が発生します。典型的な例外は次のようになります (ダッシュボード)
Application: BlitsMe.Agent.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.NullReferenceException
Stack:
at System.Collections.Generic.Dictionary`2[[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]].Insert(System.__Canon, System.__Canon, Boolean)
at MS.Internal.AppModel.ResourceContainer.GetResourceManagerWrapper(System.Uri, System.String ByRef, Boolean ByRef)
at MS.Internal.AppModel.ResourceContainer.GetPartCore(System.Uri)
at System.IO.Packaging.Package.GetPart(System.Uri)
at System.Windows.Application.LoadComponent(System.Object, System.Uri)
at BlitsMe.Agent.UI.WPF.Dashboard..ctor(BlitsMe.Agent.BlitsMeClientAppContext)
at BlitsMe.Agent.BlitsMeClientAppContext.RunDashboard()
at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
at System.Threading.ThreadHelper.ThreadStart()
これはあいまいなエラーです。loadcomponent クラスの奥深く。
次のように、メインの AppContext クラスで 2 つのメソッドを使用してダッシュボードを開始します。
internal void SetupAndRunDashboard()
{
if (DashboardUiThread == null)
{
DashboardUiThread = new Thread(RunDashboard) { Name = "dashboardUIThread" };
DashboardUiThread.SetApartmentState(ApartmentState.STA);
DashboardUiThread.Start();
}
}
private void RunDashboard()
{
UIDashBoard = new Dashboard(this);
Dispatcher.Run();
}
私のダッシュボードコンストラクタは次のようになります
public partial class Dashboard : Window
{
public Dashboard(BlitsMeClientAppContext appContext)
{
this.InitializeComponent();
......
}
}
null refがスローされているのはWindows APIの奥深くにあるため、私は本当に困っているので、これについて本当に助けていただければ幸いです。