程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> visual studio 2010-vs2010的錯誤處理相關問題

visual studio 2010-vs2010的錯誤處理相關問題

編輯:編程解疑
vs2010的錯誤處理相關問題

未處理 System.InvalidCastException
Message=無法將類型為“WindowsFormsApplication1.Form2”的對象強制轉換為類型“System.Windows.Forms.PictureBox”。
Source=WindowsFormsApplication1
StackTrace:
在 WindowsFormsApplication1.Form2.pictureBox1_MouseDown(Object sender, MouseEventArgs e) 位置 G:\333\WindowsFormsApplication1\WindowsFormsApplication1\Form2.cs:行號 44
在 System.Windows.Forms.Control.OnMouseDown(MouseEventArgs e)
在 System.Windows.Forms.Control.WmMouseDown(Message& m, MouseButtons button, Int32 clicks)
在 System.Windows.Forms.Control.WndProc(Message& m)
在 System.Windows.Forms.ScrollableControl.WndProc(Message& m)
在 System.Windows.Forms.Form.WndProc(Message& m)
在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
在 System.Windows.Forms.Application.Run()
在 WindowsFormsApplication1.Program.Main() 位置 G:\333\WindowsFormsApplication1\WindowsFormsApplication1\Program.cs:行號 21
在 System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
在 System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
在 Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
在 System.Threading.ThreadHelper.ThreadStart_Context(Object state)
在 System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
在 System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
在 System.Threading.ThreadHelper.ThreadStart()
InnerException:

最佳回答:


“WindowsFormsApplication1.Form2”的對象強制轉換為類型“System.Windows.Forms.PictureBox”。
看你的代碼,你出錯的那行代碼(用了as或者強制類型轉換),有個變量是picturebox,你賦值給form2類型了

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved