0

获取异常消息:

你调用的对象是空的。

我的代码是:

PictureBox myPicBox = new PictureBox();
myPicBox.Visible = true;
myPicBox.Image = Bitmap.FromFile(@"C:\Users\MyUser\Downloads\1341596825343s1jpg.jpg");
myPicBox.Dock = DockStyle.Fill;
this.MyTabPage.Controls.Add(myPicBox);

MyTabPage选项卡控件中的第四页在哪里。有什么建议么?

编辑:

堆栈跟踪在这里

在C:\ShipSiegeTool\ShipSiegeDashBoard\Form1.cs 中的ShipSiegeDashBoard.Form1.LoadSpaceStations() 中:ShipSiegeDashBoard.Form1..ctor() 中C:\ShipSiegeTool\ShipSiegeDashBoard\Form1.cs 中的第46 行:ShipSiegeDashBoard.Program 中的第31 行。 C:\ShipSiegeTool\ShipSiegeDashBoard\Program.cs 中的 Main():System.AppDomain._nExecuteAssembly(RuntimeAssembly 程序集,String[] args) 的第 18 行,Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
的 System.Threading.ExecutionContext .Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ThreadHelper.ThreadStart()

4

1 回答 1

1

我想您的MyTabPage控件尚未初始化。在初始化之前,您不应该尝试使用它。

于 2012-12-25T22:49:11.550 回答