http://bugzilla.novell.com/show_bug.cgi?id=551734
User [email protected] added comment http://bugzilla.novell.com/show_bug.cgi?id=551734#c3 --- Comment #3 from Carlos Alberto Cortez <[email protected]> 2009-11-02 22:49:21 MST --- I tried the next sample using 2.6/trunk and it's working fine: using System; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; public class Test { static void Main (string [] args) { Application.EnableVisualStyles (); TestForm form = new TestForm (); Application.Run (form); } } public class TestForm : Form { TreeView tv; public TestForm () { tv = new TreeView (); tv.Nodes.Add ("One"); tv.Nodes.Add ("Dos"); tv.Nodes.Add ("Drei"); tv.Nodes.Add ("Five"); tv.Dock = DockStyle.Fill; tv.ItemDrag += delegate (object o, ItemDragEventArgs args) { Console.WriteLine ("Started draggin item = " + args.Item); }; Controls.AddRange (new Control [] { tv }); } } Could you test with this one? Also, what version are you using? Thanks! -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
