Inheritance: Gtk.ScrolledWindow
Example #1
0
 public InternalTree(PropertyTree tree, TreeModel model)
     : base(model)
 {
     this.tree = tree;
     layout = new Pango.Layout (this.PangoContext);
     layout.Wrap = Pango.WrapMode.Char;
     Pango.FontDescription des = this.Style.FontDescription.Copy();
     layout.FontDescription = des;
 }