ShapeElement.InitializeResources – metoda
Inicializuje prostředky pro obrazec.
Obor názvů: Microsoft.VisualStudio.Modeling.Diagrams
Sestavení: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0 (v Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.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 je volána po nastavit styl třídy inicializován.Můžete přepsat tuto metodu k přidání nebo úpravě prostředků pro daný obrazec.
Tato metoda je volána jednou pro třídu.To není jen 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.