mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 07:45:38 +00:00
Added description.
svn path=/trunk/gtk-sharp/; revision=12389
This commit is contained in:
parent
68488b0e8e
commit
2b4bb4b9f2
|
@ -1,5 +1,5 @@
|
||||||
<Type Name="NotebookPage" FullName="Gtk.NotebookPage">
|
<Type Name="NotebookPage" FullName="Gtk.NotebookPage">
|
||||||
<TypeSignature Language="C#" Value="public class NotebookPage : GLib.Opaque, IWrapper" Maintainer="auto" />
|
<TypeSignature Language="C#" Value="public class NotebookPage : GLib.Opaque, IWrapper" Maintainer="jaime" />
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
<AssemblyName>gtk-sharp</AssemblyName>
|
<AssemblyName>gtk-sharp</AssemblyName>
|
||||||
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
||||||
|
@ -7,8 +7,15 @@
|
||||||
</AssemblyInfo>
|
</AssemblyInfo>
|
||||||
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
|
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added</summary>
|
<summary>Notebook page</summary>
|
||||||
<remarks>To be added</remarks>
|
<remarks>
|
||||||
|
<para>The Notebook page is a widget used to store and
|
||||||
|
represent a single page of a <see cref="T:Gtk.Notebook" />
|
||||||
|
Usually it will contain a <see cref="T:Gtk.Label" /> but it
|
||||||
|
can contain other widgets giving the developer the possibility
|
||||||
|
to use custom widgets.
|
||||||
|
</para>
|
||||||
|
</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
<Base>
|
<Base>
|
||||||
<BaseTypeName>GLib.Opaque</BaseTypeName>
|
<BaseTypeName>GLib.Opaque</BaseTypeName>
|
||||||
|
@ -31,11 +38,21 @@
|
||||||
<Parameter Name="child" Type="Gtk.Widget" />
|
<Parameter Name="child" Type="Gtk.Widget" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added</summary>
|
<summary>Returns the number of the NotebookPage containing the
|
||||||
<param name="notebook">To be added: an object of type 'Gtk.Notebook'</param>
|
widget 'child' in the Notebook.
|
||||||
<param name="child">To be added: an object of type 'Gtk.Widget'</param>
|
</summary>
|
||||||
<returns>To be added: an object of type 'int'</returns>
|
<param name="notebook">The Notebook that contains the widget 'child'.</param>
|
||||||
<remarks>To be added</remarks>
|
<param name="child">The widget we are looking for.</param>
|
||||||
|
<returns>The number of the NotebookPage containing the given
|
||||||
|
widget. -1 if the widget is not found in the Notebook.
|
||||||
|
</returns>
|
||||||
|
<remarks>
|
||||||
|
<para>
|
||||||
|
Returns the number of the NotebookPage containing a
|
||||||
|
given widget in a given Notebook or -1 if the widget is not
|
||||||
|
found.
|
||||||
|
</para>
|
||||||
|
</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
<Member MemberName=".ctor">
|
<Member MemberName=".ctor">
|
||||||
|
@ -61,8 +78,14 @@
|
||||||
<Parameters />
|
<Parameters />
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added</summary>
|
<summary>To be added</summary>
|
||||||
<returns>To be added: an object of type 'Gtk.NotebookPage'</returns>
|
<returns>Creates a new instance of <see
|
||||||
<remarks>To be added</remarks>
|
cref="T:Gtk.NotebookPage" /></returns>
|
||||||
|
<remarks>
|
||||||
|
<para>
|
||||||
|
This is a constructor used by derivative types of <see cref="T:Gtk.NotebookPage" />.
|
||||||
|
This is not typically used by C# code.
|
||||||
|
</para>
|
||||||
|
</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
</Members>
|
</Members>
|
||||||
|
|
Loading…
Reference in a new issue