IUIService.Styles 属性

定义

获取特定于宿主环境的样式集合。

public:
 property System::Collections::IDictionary ^ Styles { System::Collections::IDictionary ^ get(); };
public System.Collections.IDictionary Styles { get; }
member this.Styles : System.Collections.IDictionary
Public ReadOnly Property Styles As IDictionary

属性值

IDictionary

包含样式设置的 IDictionary

示例

下面的代码示例从主机环境获取对话框字体。

// The specified IDesigner implements IUIService.
System::Drawing::Font^ GetFont( IDesigner^ designer )
{
   System::Drawing::Font^ hostfont;
   
   // Gets the dialog box font from the host environment.
   hostfont = dynamic_cast<System::Drawing::Font^>(dynamic_cast<IUIService^>(designer)->Styles[ "DialogFont" ]);
   return hostfont;
}
// The specified IDesigner implements IUIService.
Font GetFont(IDesigner designer)
{      
      Font        hostfont;

      // Gets the dialog box font from the host environment. 
      hostfont = (Font)((IUIService)designer).Styles["DialogFont"];
      
      return hostfont;
}
' The specified IDesigner implements IUIService.
Function GetFont(designer As IDesigner) As Font
    Dim hostfont As Font
       
    ' Gets the dialog box font from the host environment.
    hostfont = CType(CType(designer, IUIService).Styles("DialogFont"), Font)
       
    Return hostfont
End Function

注解

字典可以从主机环境提供信息。 这至少包含应用于标准 UI 文本的字体,以及用于突出显示的颜色。 这些必需的样式为“DialogFont”和“HighlightColor”。

可以使用样式作为字典的键来检索这些样式的值,并使用键作为索引器访问字典。 例如:实现) 的 (对象 IUIService 。Styles[ (带引号的样式名称字符串) ]。

适用于

另请参阅