mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-12 20:45:41 +00:00
Patch from islandjoe@gmail.com
svn path=/trunk/gtk-sharp/; revision=60602
This commit is contained in:
parent
2ac6bb5457
commit
7d9ac6ec4b
|
@ -142,7 +142,23 @@
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>Sets or obtains the widget submenu.</summary>
|
<summary>Sets or obtains the widget submenu.</summary>
|
||||||
<value>A submenu for this menu item, or <see langword="null" /> if none.</value>
|
<value>A submenu for this menu item, or <see langword="null" /> if none.</value>
|
||||||
<remarks />
|
<remarks>
|
||||||
|
<example>
|
||||||
|
<code lang="C#">
|
||||||
|
// A container:
|
||||||
|
Menu mnuFile = new Menu();
|
||||||
|
// An item
|
||||||
|
MenuItem itmFile = new MenuItem ("_File");
|
||||||
|
|
||||||
|
// Add the item into the container:
|
||||||
|
itmFile.Submenu = mnuFile;
|
||||||
|
//
|
||||||
|
|
||||||
|
// Add the newly-created File menu into the menubar:
|
||||||
|
menuBar.Add (itmFile);
|
||||||
|
</code>
|
||||||
|
</example>
|
||||||
|
</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
<Member MemberName="AccelPath">
|
<Member MemberName="AccelPath">
|
||||||
|
|
Loading…
Reference in a new issue