https://bugzilla.novell.com/show_bug.cgi?id=429153
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=429153#c4 --- Comment #4 from Carlos Alberto Cortez <[EMAIL PROTECTED]> 2008-10-03 10:47:59 MDT --- Don't change lines that are not needed to be changed: -#endif + #endif or: - owner.SelectedItems.Clear (); + owner.SelectedItems.Clear(); Or change the method or access modifiers of members you are not using. Finally, I was talking about that in ItemControl we handle the events, then fire them in the parent, such: private void ItemsMouseDown (object sender, MouseEventArgs me) { owner.OnMouseDown (owner.TranslateMouseEventArgs (me)); ..etc You have to keep the things in that spirit: and *not* use the another approach, since it could introduce unneccessary complexity. In other word: remove the Mouse* related events hookups, and apply something like the one we are using now. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
