ComponentResourceKey.ResourceId Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit un identificateur unique permettant de différencier cette clé d'autres clés associées à ce type.
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
Valeur de propriété
Un identificateur unique. Il s'agit en général d'une chaîne.
Exemples
L’exemple suivant montre comment utiliser la ResourceId clé pour différencier cette clé d’autres personnes associées à ce type.
<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>
Remarques
Pour plus d’informations SUR XAML, consultez l’extension de balisage ComponentResourceKey.
En règle générale, la chaîne utilisée pour une ResourceId valeur est conforme à la grammaire XamlName.