Skip to main content

DashboardControlBase.ParametersDialogStyle Property

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

Namespace: DevExpress.DashboardWpf

Assembly: DevExpress.Xpf.Dashboard.v23.2.dll

NuGet Package: DevExpress.Wpf.Dashboard

Declaration

public Style ParametersDialogStyle { get; set; }

Property Value

Type Description
Style

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

Remarks

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

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