Skip to content

Commit ff9c9d6

Browse files
committed
Changing C# 7 syntax back to C# 6.
1 parent 84deec7 commit ff9c9d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MaterialDesignThemes.Wpf/DialogHost.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,8 @@ public SnackbarMessageQueue SnackbarMessageQueue
416416

417417
public Style PopupStyle
418418
{
419-
get => (Style) GetValue(PopupStyleProperty);
420-
set => SetValue(PopupStyleProperty, value);
419+
get { return (Style) GetValue(PopupStyleProperty); }
420+
set { SetValue(PopupStyleProperty, value); }
421421
}
422422

423423
public override void OnApplyTemplate()

0 commit comments

Comments
 (0)