LocalizableAttribute(Boolean) Konstruktor

Definition

Initierar en ny instans av LocalizableAttribute klassen.

public:
 LocalizableAttribute(bool isLocalizable);
public LocalizableAttribute(bool isLocalizable);
new System.ComponentModel.LocalizableAttribute : bool -> System.ComponentModel.LocalizableAttribute
Public Sub New (isLocalizable As Boolean)

Parametrar

isLocalizable
Boolean

trueom en egenskap ska lokaliseras; annars . false

Exempel

I följande exempel markeras en egenskap som behöver lokaliseras. Den här koden skapar en ny LocalizableAttribute, anger dess värde till LocalizableAttribute.Yesoch binder den till egenskapen .

   [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.
        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

Gäller för

Se även