Control.AccessibleName Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Erişilebilirlik istemci uygulamaları tarafından kullanılan denetimin adını alır veya ayarlar.
public:
property System::String ^ AccessibleName { System::String ^ get(); void set(System::String ^ value); };
public string AccessibleName { get; set; }
public string? AccessibleName { get; set; }
member this.AccessibleName : string with get, set
Public Property AccessibleName As String
Özellik Değeri
Erişilebilirlik istemci uygulamaları tarafından kullanılan denetimin adı. Varsayılan değer: null
.
Örnekler
Aşağıdaki kod örneği, türetilmiş bir CheckBox sınıfın örneğini oluşturur, bunu özelliğine Image atar Image ve özelliği olduğundan Text null
ve AccessibleDescription özelliklerini ayarlarAccessibleName. MyCheckBox
Bu örnekte adlı MyForm
bir Form olması gerekir.
public:
MyForm()
{
// Create a 'MyCheckBox' control and
// display an image on it.
MyCustomControls::MyCheckBox^ myCheckBox = gcnew MyCustomControls::MyCheckBox;
myCheckBox->Location = Point(5,5);
myCheckBox->Image = Image::FromFile( String::Concat( Application::CommonAppDataPath, "\\Preview.jpg" ) );
// Set the AccessibleName property
// since there is no Text displayed.
myCheckBox->AccessibleName = "Preview";
myCheckBox->AccessibleDescription = "A toggle button used to show the document preview.";
this->Controls->Add( myCheckBox );
}
public MyForm()
{
// Create a 'MyCheckBox' control and
// display an image on it.
MyCustomControls.MyCheckBox myCheckBox =
new MyCustomControls.MyCheckBox();
myCheckBox.Location = new Point(5,5);
myCheckBox.Image = Image.FromFile(
Application.CommonAppDataPath + "\\Preview.jpg");
// Set the AccessibleName property
// since there is no Text displayed.
myCheckBox.AccessibleName = "Preview";
myCheckBox.AccessibleDescription =
"A toggle button used to show the document preview.";
this.Controls.Add(myCheckBox);
}
Public Sub New()
' Create a 'MyCheckBox' control and
' display an image on it.
Dim myCheckBox As New MyCustomControls.MyCheckBox()
myCheckBox.Location = New Point(5, 5)
myCheckBox.Image = Image.FromFile( _
Application.CommonAppDataPath + "\Preview.jpg")
' Set the AccessibleName property
' since there is no Text displayed.
myCheckBox.AccessibleName = "Preview"
' Set the AccessibleDescription text.
myCheckBox.AccessibleDescription = _
"A toggle button used to show the document preview."
Me.Controls.Add(myCheckBox)
End Sub
Açıklamalar
AccessibleName özelliği, kapsayıcı içindeki nesneyi kısaca açıklayan ve tanımlayan bir etikettir. Örneğin, içindeki Buttonmetin, adı veya denetimin MenuItemyanında TextBox görüntülenen etiket.
Erişilebilir nesnelerin özellikleri hakkında daha fazla bilgi için bkz. "Açıklayıcı Özelliklerin İçeriği.