I think he was talking about GTK#'s TreeView widget. On Apr 7, 2005 8:29 AM, Scott Hatfield <[EMAIL PROTECTED]> wrote: > > > > # Here's a trivial example > > > > import sys > > sys.LoadAssemblyByName("System.Drawing") > > sys.LoadAssemblyByName("System.Windows.Forms") > > > > from System.Windows.Forms import * > > from System.Drawing import * > > > > f = Form(Text="Trivial TreeView Example") > > f.FormBorderStyle = FormBorderStyle.FixedDialog > > f.StartPosition = FormStartPosition.CenterScreen > > > > treeView = TreeView(Location=Point(30,30), Size=Size(200,200)) > > > > node = TreeNode("root") > > node.Nodes.Add(TreeNode("child1")) > > node.Nodes.Add(TreeNode("child2")) > > node.Nodes.Add(TreeNode("child3")) > > > > treeView.Nodes.Insert(0,node) > > > > f.Controls.Add(treeView) > > f.ShowDialog() > > > > ________________________________ > > > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > On Behalf Of Hector Miuler Malpica Gallegos > Sent: Wednesday, April 06, 2005 4:47 PM > To: users-ironpython.com@lists.ironpython.com > Subject: [IronPython] IronPython/Gtk#/TreeView ?? > > > > Hi, how I can use TreeView in IronPython? > > C# > TreeStore StoreReportesDiario = new TreeStore (typeof (string), typeof > (string)); > > Python?? > StoreReportesDiario = Gtk.TreeStore() > _______________________________________________ > users-ironpython.com mailing list > users-ironpython.com@lists.ironpython.com > http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > > >
-- -- Travis Watkins http://www.realistanew.com _______________________________________________ users-ironpython.com mailing list users-ironpython.com@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com