public PropertiesWidget () { Stetic.WidgetPropertyTree grid = GuiBuilderService.SteticApp.PropertiesWidget; Notebook tabs = new Notebook (); tabs.AppendPage (grid, new Label (GettextCatalog.GetString ("Properties"))); signalsEditor = GuiBuilderService.SteticApp.SignalsWidget; signalsEditor.SignalActivated += new EventHandler (OnSignalActivated); tabs.AppendPage (signalsEditor, new Label (GettextCatalog.GetString ("Signals"))); Gtk.EventBox infoBox = new Gtk.EventBox (); tabs.AppendPage (infoBox, new Gtk.Label ("")); PackStart (tabs, true, true, 0); ShowAll (); infoBox.Hide (); tabs.Page = 0; }
public PropertiesWidget() { Stetic.WidgetPropertyTree grid = GuiBuilderService.SteticApp.PropertiesWidget; Notebook tabs = new Notebook(); tabs.AppendPage(grid, new Label(GettextCatalog.GetString("Properties"))); signalsEditor = GuiBuilderService.SteticApp.SignalsWidget; signalsEditor.SignalActivated += new EventHandler(OnSignalActivated); tabs.AppendPage(signalsEditor, new Label(GettextCatalog.GetString("Signals"))); Gtk.EventBox infoBox = new Gtk.EventBox(); tabs.AppendPage(infoBox, new Gtk.Label("")); PackStart(tabs, true, true, 0); ShowAll(); infoBox.Hide(); tabs.Page = 0; }