Skip to main content
A newer version of this page is available. .

DashboardControlBase.ExportDialogStyle Property

Gets or sets the style applied to the Export dialog window. This is a dependency property.

Namespace: DevExpress.DashboardWpf

Assembly: DevExpress.Xpf.Dashboard.v19.1.dll

Declaration

public Style ExportDialogStyle { get; set; }

Property Value

Type Description
Style

A Style object that is the style applied to the Export dialog window.

Remarks

Initially, the Export dialog window style is defined as follows:

xmlns:dxdasht="clr-namespace:DevExpress.Xpf.Dashboard.Themes"
<!-- -->
  <Style x:Key="{dxdasht:DashboardControlThemeKey ResourceKey=ExportDialogStyle}" TargetType="{x:Type dx:ThemedWindow}">
      <Setter Property="ResizeMode" Value="NoResize"/>
      <Setter Property="SizeToContent" Value="WidthAndHeight"/>
      <Setter Property="ShowIcon" Value="False"/>
  </Style> 
See Also