public MainWindow() : base() { Title = "GB Forge"; Width = 1024; Height = 768; InitialLocation = WindowLocation.CenterScreen; Closed += HandleClosed; var selector = new ToolSelector(this); _contentBox = new VBox(); _contentBox.PackStart(selector); Content = _contentBox; CreateToolsets(); ShowToolset("T"); }