[Mono-bugs] [Bug 81173][Min] New - WinForms: ContainerControl.OnHandleCreated and OnHandleDestroyed works incorrectly
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sat Mar 17 12:39:00 EDT 2007
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by azazel at email.cz.
http://bugzilla.ximian.com/show_bug.cgi?id=81173
--- shadow/81173 2007-03-17 11:39:00.000000000 -0500
+++ shadow/81173.tmp.28109 2007-03-17 11:39:00.000000000 -0500
@@ -0,0 +1,40 @@
+Bug#: 81173
+Product: Mono: Runtime
+Version: 1.2
+OS: other
+OS Details: Suse 10
+Status: NEW
+Resolution:
+Severity:
+Priority: Minor
+Component: misc
+AssignedTo: mono-bugs at ximian.com
+ReportedBy: azazel at email.cz
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: WinForms: ContainerControl.OnHandleCreated and OnHandleDestroyed works incorrectly
+
+If Windows.Form is created OnHandleCreated is called correctly, but after
+close is not called appropriate OnHandleDestroyed, but new create/destroy
+pair with different handle
+
+compile and run attached program and close the Form
+
+Actual output (mono-1.2.3.1):
+
+> START
+>> handle 37748739 created
+> DISPOSE
+>> handle 37748747 created
+>> handle 37748747 destroyed
+> FINISH
+
+Expected output (ms .net framework):
+
+> START
+>> handle 37748739 created
+> DISPOSE
+>> handle 37748739 destroyed
+> FINISH
More information about the mono-bugs
mailing list