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 [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=82577 --- shadow/82577 2007-08-24 13:23:57.000000000 -0400 +++ shadow/82577.tmp.20278 2007-08-24 13:23:57.000000000 -0400 @@ -0,0 +1,37 @@ +Bug#: 82577 +Product: Mono: Class Libraries +Version: 1.2 +OS: All +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: TreeView: Endless loop calling CancelEdit and BeginEdit + +To refuse changes made to the label of a TreeNode and keep the label +editable, you can use the following eventhandler: + +void TreeView_AfterLabelEdit (object sender, NodeLabelEditEventArgs e) +{ + if (e.Label == null) + return; + + if (e.Label == "REFUSE") { + e.CancelEdit = true; + e.Node.BeginEdit (); + } +} + +However, on Mono this results in an endless loop and eventually a crash. + +To reproduce: +1. compile and run the attached source code. +2. follow the on-screen instructions. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
