ComponentResourceKey.ResourceId Proprietà

Definizione

Ottiene o imposta un identificatore univoco utilizzato per differenziare questa chiave da altre associate a questo tipo.

public:
 property System::Object ^ ResourceId { System::Object ^ get(); void set(System::Object ^ value); };
public object ResourceId { get; set; }
member this.ResourceId : obj with get, set
Public Property ResourceId As Object

Valore della proprietà

Identificatore univoco. In genere si tratta di una stringa.

Esempio

Nell'esempio seguente viene illustrato come usare l'oggetto ResourceId per differenziare questa chiave da altri associati a questo tipo.

<Style 
    x:Key="{ComponentResourceKey 
        TypeInTargetAssembly={x:Type local:ColorPicker},
        ResourceId=ColorSliderStyle}"
    TargetType="{x:Type Slider}">

    <Setter Property="Minimum" Value="0"/>
    <Setter Property="Maximum" Value="255"/>
    <Setter Property="SmallChange" Value="1"/>
    <Setter Property="LargeChange" Value="51"/>
    <Setter Property="IsMoveToPointEnabled" Value="true"/>
    <Setter Property="Orientation" Value="Horizontal"/>
</Style>

Commenti

Per informazioni XAML, vedere Estensione markup ComponentResourceKey.

In genere, la stringa usata per un ResourceId valore è conforme alla grammatica XamlName.

Si applica a