Udostępnij za pośrednictwem


ResourceDictionary.Add Metoda

Definicja

Przeciążenia

Add(ResourceDictionary)

Dodaj mergedResourceDictionary do scalonych słowników w this słowniku zasobów.

Add(Style)

Dodaje niejawny styl do elementu ResourceDictionary.

Add(StyleSheet)

Dodaje styleSheet do this listy arkuszy stylów słownika zasobów.

Add(String, Object)

Dodaje key i value do ResourceDictionary pary klucz-wartość.

Add(ResourceDictionary)

Źródło:
ResourceDictionary.cs
Źródło:
ResourceDictionary.cs

Dodaj mergedResourceDictionary do scalonych słowników w this słowniku zasobów.

public:
 void Add(Microsoft::Maui::Controls::ResourceDictionary ^ mergedResourceDictionary);
public void Add (Microsoft.Maui.Controls.ResourceDictionary mergedResourceDictionary);
member this.Add : Microsoft.Maui.Controls.ResourceDictionary -> unit
Public Sub Add (mergedResourceDictionary As ResourceDictionary)

Parametry

mergedResourceDictionary
ResourceDictionary

Słownik zasobów do dodania.

Dotyczy

Add(Style)

Źródło:
ResourceDictionary.cs
Źródło:
ResourceDictionary.cs

Dodaje niejawny styl do elementu ResourceDictionary.

public:
 void Add(Microsoft::Maui::Controls::Style ^ style);
public void Add (Microsoft.Maui.Controls.Style style);
member this.Add : Microsoft.Maui.Controls.Style -> unit
Public Sub Add (style As Style)

Parametry

style
Style

Niejawny styl do dodania.

Uwagi

Style niejawne są stosowane do wszystkich elementów VisualElements pasujących do elementu TargetType w elementach podrzędnych tego właściciela elementu ResourceDictionary, chyba że styl jest jawnie stosowany do elementu.

Niejawne style są dodawane do elementu ResourceDictionary w języku XAML, nie określając elementu x:Key.

Dotyczy

Add(StyleSheet)

Źródło:
ResourceDictionary.cs
Źródło:
ResourceDictionary.cs

Dodaje styleSheet do this listy arkuszy stylów słownika zasobów.

public:
 void Add(Microsoft::Maui::Controls::StyleSheets::StyleSheet ^ styleSheet);
public void Add (Microsoft.Maui.Controls.StyleSheets.StyleSheet styleSheet);
member this.Add : Microsoft.Maui.Controls.StyleSheets.StyleSheet -> unit
Public Sub Add (styleSheet As StyleSheet)

Parametry

styleSheet
StyleSheet

Arkusz stylów do dodania

Dotyczy

Add(String, Object)

Źródło:
ResourceDictionary.cs
Źródło:
ResourceDictionary.cs

Dodaje key i value do ResourceDictionary pary klucz-wartość.

public:
 virtual void Add(System::String ^ key, System::Object ^ value);
public void Add (string key, object value);
abstract member Add : string * obj -> unit
override this.Add : string * obj -> unit
Public Sub Add (key As String, value As Object)

Parametry

key
String

Identyfikator, który ma być używany do pobierania elementu value.

value
Object

Klasa Object skojarzona z klasą key.

Implementuje

Dotyczy