[Gtk-sharp-list] Notebook Widget
Darwin Reynoso
monouser at gmail.com
Sat Feb 23 19:36:19 EST 2008
Hi,
how do i add a close button widget to a notebook page kind of like
monodevelop tabs.
here is my code
//create a page with a textview widget
protected virtual void onclicked (object sender, System.EventArgs e)
{
//i need a textview so i can show a hex file
textview = new TextView();
string label = "Hex output";
notebook1.AppendPage (textview , new Label (label));
notebook1.ShowAll();
}
i need to be able to close the page
thanks
More information about the Gtk-sharp-list
mailing list