10 instantiations of RadioButton
System.Web.Entity.Design (2)
System\Data\WebControls\Design\EntityDataSourceConfigureObjectContextPanel.designer.cs (2)
42this._namedConnectionRadioButton = new System.Windows.Forms.RadioButton(); 45this._connectionStringRadioButton = new System.Windows.Forms.RadioButton();
System.Web.Mobile (2)
UI\MobileControls\Design\DeviceFilterEditorDialog.cs (2)
222this._rbCompare = new System.Windows.Forms.RadioButton(); 230this._rbDelegate = new System.Windows.Forms.RadioButton();
System.Workflow.ComponentModel (6)
AuthoringOM\Design\Dialogs\ActivityBindForm.Designer.cs (2)
38this.createField = new System.Windows.Forms.RadioButton(); 39this.createProperty = new System.Windows.Forms.RadioButton();
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (4)
279this.adjustToRadioButton = new System.Windows.Forms.RadioButton(); 283this.fitToRadioButton = new System.Windows.Forms.RadioButton(); 286this.landscapeRadioButton = new System.Windows.Forms.RadioButton(); 288this.portraitRadioButton = new System.Windows.Forms.RadioButton();
26 references to RadioButton
System.Web.Entity.Design (2)
System\Data\WebControls\Design\EntityDataSourceConfigureObjectContextPanel.designer.cs (2)
142private System.Windows.Forms.RadioButton _namedConnectionRadioButton; 144private System.Windows.Forms.RadioButton _connectionStringRadioButton;
System.Web.Mobile (2)
UI\MobileControls\Design\DeviceFilterEditorDialog.cs (2)
62private System.Windows.Forms.RadioButton _rbDelegate; 63private System.Windows.Forms.RadioButton _rbCompare;
System.Windows.Forms (16)
winforms\Managed\System\WinForms\ButtonInternal\CheckableControlBaseAdapter.cs (2)
56RadioButton radioButton = Control as RadioButton;
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonBaseAdapter.cs (2)
22protected new RadioButton Control { 24return ((RadioButton)base.Control);
winforms\Managed\System\WinForms\RadioButton.cs (12)
67/// Initializes a new instance of the <see cref='System.Windows.Forms.RadioButton'/> 87/// <para>Gets or sets a value indicating whether the <see cref='System.Windows.Forms.RadioButton.Checked'/> 394/// value of the <see cref='System.Windows.Forms.RadioButton.Checked'/> 506if (ctl != this && ctl is RadioButton) { 507RadioButton button = (RadioButton)ctl; 530if (ctl is RadioButton) { 531RadioButton button = (RadioButton) ctl; 648public RadioButtonAccessibleObject(RadioButton owner) : base(owner) { 686if (((RadioButton)Owner).Checked) { 699((RadioButton)Owner).PerformClick();
System.Workflow.ComponentModel (6)
AuthoringOM\Design\Dialogs\ActivityBindForm.Designer.cs (2)
189private System.Windows.Forms.RadioButton createProperty; 190private System.Windows.Forms.RadioButton createField;
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (4)
34private System.Windows.Forms.RadioButton adjustToRadioButton; 35private System.Windows.Forms.RadioButton fitToRadioButton; 41private System.Windows.Forms.RadioButton portraitRadioButton; 42private System.Windows.Forms.RadioButton landscapeRadioButton;