RadioButton.Appearance Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает или задает значение, определяющее внешний вид переключателя RadioButton.
public:
property System::Windows::Forms::Appearance Appearance { System::Windows::Forms::Appearance get(); void set(System::Windows::Forms::Appearance value); };
public System.Windows.Forms.Appearance Appearance { get; set; }
member this.Appearance : System.Windows.Forms.Appearance with get, set
Public Property Appearance As Appearance
Значение свойства
Одно из значений перечисления Appearance. Значение по умолчанию — Normal.
Исключения
Присваиваемое значение не относится к значениям Appearance.
Примеры
В следующем примере кода создается и инициализируется элемент RadioButtonуправления, создается инициализируется элемент управления переключателем, устанавливается его AutoCheck свойство false
и добавляется в элемент Formуправления .
private void InitializeMyRadioButton()
{
// Create and initialize a new RadioButton.
RadioButton radioButton1 = new RadioButton();
// Make the radio button control appear as a toggle button.
radioButton1.Appearance = Appearance.Button;
// Turn off the update of the display on the click of the control.
radioButton1.AutoCheck = false;
// Add the radio button to the form.
Controls.Add(radioButton1);
}
Private Sub InitializeMyRadioButton()
' Create and initialize a new RadioButton.
Dim radioButton1 As New RadioButton()
' Make the radio button control appear as a toggle button.
radioButton1.Appearance = Appearance.Button
' Turn off the update of the display on the click of the control.
radioButton1.AutoCheck = False
' Add the radio button to the form.
Controls.Add(radioButton1)
End Sub
Комментарии
Appearance Если задано Normalзначение, RadioButton элемент управления рисуется с помощью круглого флажка. Если задано Buttonзначение, RadioButton то рисуется как элемент управления, который может быть переключен на состояние вверх или вниз. Любой тип может отображать текст, изображение или оба.