Gtk.VBox vbox = new Gtk.VBox(); // create a new vbox Gtk.Button button = new Gtk.Button("Click me!"); // create a new button vbox.Add(button); // add the button to the vbox
Gtk.VBox vbox = new Gtk.VBox(); // create a new vbox Gtk.Button button1 = new Gtk.Button("Button 1"); // create button 1 Gtk.Button button2 = new Gtk.Button("Button 2"); // create button 2 Gtk.Button button3 = new Gtk.Button("Button 3"); // create button 3 vbox.Add(button1); // add button 1 to the vbox vbox.Add(button2); // add button 2 to the vbox vbox.Add(button3); // add button 3 to the vboxIn this example, we create a new `Gtk.VBox` and three `Gtk.Button` widgets. Then, we add all three buttons to the vbox using the `Gtk.VBox.Add` method. Both examples above are using the `Gtk` library package in C#.