88ab36d2ea
* gtk/Gtk.metadata: Hide most RadioButton constructors, for api reasons * gtk/RadioButton.custom: add ctor to create a new RadioButton with its own group to avoid having to pass null * gtk/gtk-api.xml: regen svn path=/trunk/gtk-sharp/; revision=21881
14 lines
353 B
Text
14 lines
353 B
Text
//
|
|
// RadioButton.custom
|
|
//
|
|
// Author: John Luke <jluke@cfl.rr.com>
|
|
//
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
static extern IntPtr gtk_radio_button_new_with_mnemonic (IntPtr group, string label);
|
|
|
|
// creates a new group for this RadioButton
|
|
public RadioButton (string label)
|
|
{
|
|
Raw = gtk_radio_button_new_with_mnemonic (IntPtr.Zero, label);
|
|
}
|