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, содержащий параметры стилей.

Примеры

В следующем примере кода возвращается шрифт диалогового окна из среды узла.

// 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

Комментарии

Словарь может предоставлять сведения из среды узла. Как минимум, он состоит из шрифта, который следует использовать для стандартного текста пользовательского интерфейса, и цвета, используемого для выделения. Эти обязательные стили: DialogFont и HighlightColor.

Значения для этих стилей можно получить, используя стиль в качестве ключа для словаря, при обращении к словарю с помощью ключа в качестве индексатора. Например: (объект, реализуя ). IUIService Стили[(строка имени стиля в кавычках)].

Применяется к

См. также раздел