ShapeElement.InitializeResources – metoda
Inicializuje prostředky pro obrazec.
Obor názvů: Microsoft.VisualStudio.Modeling.Diagrams
Sestavení: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0 (v Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0.dll)
Syntaxe
'Deklarace
Protected Overridable Sub InitializeResources ( _
classStyleSet As StyleSet _
)
protected virtual void InitializeResources(
StyleSet classStyleSet
)
Parametry
- classStyleSet
Typ: Microsoft.VisualStudio.Modeling.Diagrams.StyleSet
Nastavit styl třídy tvaru.
Poznámky
Tato metoda se nazývá po sadu stylů třída byla inicializována.Tento způsob přidání nebo změna prostředků pro obrazec lze přepsat.
Tato metoda se nazývá jednou pro třídu.Není zavolána pro každou instanci.
Příklady
protected override void InitializeResources(DslDiagrams::StyleSet classStyleSet)
{
base.InitializeResources(classStyleSet);
// Fill brush settings for this shape.
DslDiagrams::BrushSettings backgroundBrush = new DslDiagrams::BrushSettings();
backgroundBrush.Color = global::System.Drawing.Color.FromKnownColor(global::System.Drawing.KnownColor.Blue);
classStyleSet.OverrideBrush(DslDiagrams::DiagramBrushes.DiagramBackground, backgroundBrush);
// Text brush settings for this shape.
DslDiagrams::BrushSettings textBrush = new DslDiagrams::BrushSettings();
textBrush.Color = global::System.Drawing.Color.FromKnownColor(global::System.Drawing.KnownColor.Red);
classStyleSet.OverrideBrush(DslDiagrams::DiagramBrushes.DiagramText, textBrush);
}
Zabezpečení rozhraní .NET Framework
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.