Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update MaterialDesignThemes.Wpf/DialogHost.cs
  • Loading branch information
Keboo authored Feb 26, 2023
commit aaf57398c6a02385d72df674cdb8f82e0b87745e
4 changes: 2 additions & 2 deletions MaterialDesignThemes.Wpf/DialogHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -437,8 +437,8 @@ public object? DialogContent

public double DialogContentUniformCornerRadius
{
get { return (double)GetValue(DialogContentUniformCornerRadiusProperty); }
set { SetValue(DialogContentUniformCornerRadiusProperty, value); }
get => (double)GetValue(DialogContentUniformCornerRadiusProperty);
set => SetValue(DialogContentUniformCornerRadiusProperty, value);
}

public static readonly DependencyProperty DialogContentTemplateProperty = DependencyProperty.Register(
Expand Down