ComponentResourceKey.ResourceId Proprietà

Definizione

Ottiene o imposta un identificatore univoco 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 per ResourceId differenziare questa chiave da altre associate 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 SU XAML, vedere ComponentResourceKey Markup Extension.For XAML information, see ComponentResourceKey Markup Extension.

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

Si applica a