LocalizableAttribute Kelas
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menentukan apakah properti atau parameter harus dilokalkan. Kelas ini tidak dapat diwariskan.
public ref class LocalizableAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.All)]
public sealed class LocalizableAttribute : Attribute
public sealed class LocalizableAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.All)>]
type LocalizableAttribute = class
inherit Attribute
type LocalizableAttribute = class
inherit Attribute
Public NotInheritable Class LocalizableAttribute
Inherits Attribute
- Warisan
- Atribut
Contoh
Contoh berikut menandai message
parameter yang perlu dilokalkan.
public static void ShowMessage([Localizable(true)] string message)
Contoh berikut menandai properti sebagai perlu dilokalkan.
public:
property int MyProperty
{
[Localizable(true)]
int get()
{
// Insert code here.
return 0;
}
void set( int value )
{
// Insert code here.
}
}
[Localizable(true)]
public int MyProperty {
get {
// Insert code here.
return 0;
}
set {
// Insert code here.
}
}
<Localizable(True)> _
Public Property MyProperty() As Integer
Get
' Insert code here.
Return 0
End Get
Set
' Insert code here.
End Set
End Property
Contoh berikutnya menunjukkan cara memeriksa nilai LocalizableAttribute untuk MyProperty
. Pertama, kode mendapatkan PropertyDescriptorCollection dengan semua properti untuk objek . Kemudian, kode mendapatkan MyProperty
dari PropertyDescriptorCollection. Selanjutnya, ia mengembalikan atribut untuk properti ini dan menyimpannya dalam variabel atribut.
Akhirnya, kode diatur myAttribute
ke nilai LocalizableAttribute di AttributeCollection dan memeriksa apakah properti perlu dilokalkan.
// Gets the attributes for the property.
AttributeCollection^ attributes = TypeDescriptor::GetProperties( this )[ "MyProperty" ]->Attributes;
// Checks to see if the property needs to be localized.
LocalizableAttribute^ myAttribute = dynamic_cast<LocalizableAttribute^>(attributes[ LocalizableAttribute::typeid ]);
if ( myAttribute->IsLocalizable )
{
// Insert code here.
}
// Gets the attributes for the property.
AttributeCollection attributes =
TypeDescriptor.GetProperties(this)["MyProperty"].Attributes;
// Checks to see if the property needs to be localized.
LocalizableAttribute myAttribute =
(LocalizableAttribute)attributes[typeof(LocalizableAttribute)];
if(myAttribute.IsLocalizable) {
// Insert code here.
}
' Gets the attributes for the property.
Dim attributes As AttributeCollection = TypeDescriptor.GetProperties(Me)("MyProperty").Attributes
' Checks to see if the property needs to be localized.
Dim myAttribute As LocalizableAttribute = CType(attributes(GetType(LocalizableAttribute)), LocalizableAttribute)
If myAttribute.IsLocalizable Then
' Insert code here.
End If
Keterangan
Saat kode dibuat untuk komponen, anggota yang ditandai dengan LocalizableAttribute set agar true
nilai properti mereka disimpan dalam file sumber daya. Anda dapat melokalisasi file sumber daya ini tanpa memodifikasi kode.
Secara default, anggota yang tidak memiliki atribut yang dapat dilokalkan atau ditandai dengan LocalizableAttribute yang diatur ke false
akan memiliki nilai properti mereka tetap menjadi kode, jika jenis data memungkinkan. Jika tidak, jika komponen utama diatur ke Localizable
, semua properti akan disimpan ke file sumber daya. Default adalah false
.
Catatan
Saat Anda menandai properti dengan diatur LocalizableAttribute ke true
, nilai atribut ini diatur ke anggota Yeskonstanta . Untuk properti yang ditandai dengan LocalizableAttribute diatur ke false
, nilainya adalah No. Oleh karena itu, ketika Anda ingin memeriksa nilai atribut ini dalam kode Anda, Anda harus menentukan atribut sebagai LocalizableAttribute.Yes atau LocalizableAttribute.No.
Untuk informasi selengkapnya, lihat Atribut.
Konstruktor
LocalizableAttribute(Boolean) |
Menginisialisasi instans baru kelas LocalizableAttribute. |
Bidang
Default |
Menentukan nilai default, yaitu No. Bidang ini |
No |
Menentukan bahwa properti tidak boleh dilokalkan. Bidang ini |
Yes |
Menentukan bahwa properti harus dilokalkan. Bidang ini |
Properti
IsLocalizable |
Mendapatkan nilai yang menunjukkan apakah properti harus dilokalkan. |
TypeId |
Ketika diimplementasikan di kelas turunan, mendapatkan pengidentifikasi unik untuk ini Attribute. (Diperoleh dari Attribute) |
Metode
Equals(Object) |
Mengembalikan apakah nilai objek yang diberikan sama dengan saat ini LocalizableAttribute. |
GetHashCode() |
Mengembalikan kode hash untuk instans ini. |
GetType() |
Mendapatkan dari instans Type saat ini. (Diperoleh dari Object) |
IsDefaultAttribute() |
Menentukan apakah atribut ini adalah default. |
IsDefaultAttribute() |
Ketika ditimpa di kelas turunan, menunjukkan apakah nilai instans ini adalah nilai default untuk kelas turunan. (Diperoleh dari Attribute) |
Match(Object) |
Saat ditimpa di kelas turunan, mengembalikan nilai yang menunjukkan apakah instans ini sama dengan objek tertentu. (Diperoleh dari Attribute) |
MemberwiseClone() |
Membuat salinan dangkal dari saat ini Object. (Diperoleh dari Object) |
ToString() |
Mengembalikan string yang mewakili objek saat ini. (Diperoleh dari Object) |
Implementasi Antarmuka Eksplisit
_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr) |
Memetakan sekumpulan nama ke sekumpulan pengidentifikasi pengiriman yang sesuai. (Diperoleh dari Attribute) |
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr) |
Mengambil informasi jenis untuk objek, yang dapat digunakan untuk mendapatkan informasi jenis untuk antarmuka. (Diperoleh dari Attribute) |
_Attribute.GetTypeInfoCount(UInt32) |
Mengambil jumlah antarmuka informasi jenis yang disediakan objek (baik 0 atau 1). (Diperoleh dari Attribute) |
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr) |
Menyediakan akses ke properti dan metode yang diekspos oleh objek. (Diperoleh dari Attribute) |