这是我在gtk中的TreeView中的代码。请帮我刷新gtk
Gtk.TreeViewColumn activeColumn = new Gtk.TreeViewColumn ();
activeColumn.Title = "Active";
activeColumn.Expand = true;
activeColumn.Sizing = TreeViewColumnSizing.Fixed;
activeColumn.MinWidth = 100;
Gtk.CellRendererPixbuf activeCell = new Gtk.CellRendererPixbuf ();
activeColumn.PackStart (activeCell, true);
activeColumn.AddAttribute (activeCell, "pixbuf", 6);