mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 11:55:38 +00:00
12 lines
235 B
Plaintext
12 lines
235 B
Plaintext
|
//
|
||
|
// RadioMenuItem.custom
|
||
|
//
|
||
|
// Author: John Luke <jluke@cfl.rr.com>
|
||
|
//
|
||
|
|
||
|
// creates a new group for this RadioMenuItem
|
||
|
public RadioMenuItem (string label)
|
||
|
{
|
||
|
Raw = gtk_radio_menu_item_new_with_mnemonic (IntPtr.Zero, label);
|
||
|
}
|