mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 03:25:36 +00:00
710bbc7959
* gtk/Notebook.custom (CurrentPageWidget): Added a property for getting the current page widget directly. 2003-07-30 Duncan Mak <duncan@ximian.com> * en/Gnome/CanvasShape.xml: documented. svn path=/trunk/gtk-sharp/; revision=17100
9 lines
221 B
Plaintext
9 lines
221 B
Plaintext
// Shortcut for getting the current Page widget.
|
|
// Author: Xavier Amado (xavier@blackbloodstudios.com)
|
|
|
|
public Widget CurrentPageWidget {
|
|
get {
|
|
return GetNthPage (CurrentPage);
|
|
}
|
|
}
|