DXDialog Class
In This Article
A dialog that is visually consistent with other controls that use DevExpress visual themes.
Namespace: DevExpress.Xpf.Core
Assembly: DevExpress.Xpf.Core.v24.1.dll
NuGet Package: DevExpress.Wpf.Core
#Declaration
#Remarks
Tip
This class is outdated. Use one of the Themed
Note
The DXDialog
Example:
private void Button_Click_1(object sender, RoutedEventArgs e) {
DXDialog d = new DXDialog("Information", DialogButtons.Ok, true);
d.Content = new TextBlock() { Text = "This is a WPF DXDialog!" };
d.SizeToContent = System.Windows.SizeToContent.WidthAndHeight;
d.Owner = this;
d.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterOwner;
d.ShowDialog();
}
#Inheritance
See Also