C# Class Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogRadioButtonList

Represents a radio button list for the Common File Dialog.
Inheritance: Microsoft.WindowsAPICodePack.Dialogs.Controls.CommonFileDialogControl, ICommonFileDialogIndexedControls
显示文件 Open project: dlech/SshAgentLib Class Usage Examples

Private Properties

Property Type Description
Attach void
ICommonFileDialogIndexedControls void

Public Methods

Method Description
CommonFileDialogRadioButtonList ( ) : System

Creates a new instance of this class.

CommonFileDialogRadioButtonList ( string name ) : System

Creates a new instance of this class with the specified name.

Private Methods

Method Description
Attach ( IFileDialogCustomize dialog ) : void

Attach the RadioButtonList control to the dialog object

ICommonFileDialogIndexedControls ( ) : void

Occurs when the user changes the SelectedIndex.

Because this method is defined in an interface, we can either have it as public, or make it private and explicitly implement (like below). Making it public doesn't really help as its only internal (but can't have this internal because of the interface)

Method Details

CommonFileDialogRadioButtonList() public method

Creates a new instance of this class.
public CommonFileDialogRadioButtonList ( ) : System
return System

CommonFileDialogRadioButtonList() public method

Creates a new instance of this class with the specified name.
public CommonFileDialogRadioButtonList ( string name ) : System
name string The name of this control.
return System