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=80163 --- shadow/80163 2006-12-11 19:45:16.000000000 -0500 +++ shadow/80163.tmp.31928 2006-12-21 07:25:43.000000000 -0500 @@ -75,6 +75,28 @@ ------- Additional Comments From [EMAIL PROTECTED] 2006-12-11 19:45 ------- I've fixed the textbox part. The rest of the issue is more of a combobox/focus issue. + +------- Additional Comments From [EMAIL PROTECTED] 2006-12-21 07:25 ------- +Here is quick fix for the combo box context menu issue: set the +ContextMenu on the textbox_ctrl to the same value as the ComboBox +itself. + +textbox_ctrl = new ComboTextBox (this); +//Do this where textbox_ctrl is created. +textbox_ctrl.ContextMenu = ContextMenu; + +Also, when the user changes the ContextMenu + public override ContextMenu ContextMenu { + get { + return base.ContextMenu; + } + set { + base.ContextMenu = value; + if (textbox_ctrl != null) + textbox_ctrl.ContextMenu = value; + } + } + _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
