Skip to content

Commit d661b15

Browse files
committed
remove obsolete property. I'm not gonna go semver on this one, it's been obsolete for a while
1 parent 4bbedd1 commit d661b15

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

MaterialDesignThemes.Wpf/PopupBox.cs

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -214,20 +214,6 @@ public DataTemplate PopupContentTemplate
214214
set { SetValue(PopupContentTemplateProperty, value); }
215215
}
216216

217-
[Obsolete]
218-
public static readonly DependencyProperty StaysOpenOnEditProperty = DependencyProperty.Register(
219-
nameof(StaysOpenOnEdit), typeof (bool), typeof (PopupBox), new PropertyMetadata(default(bool)));
220-
221-
/// <summary>
222-
/// Prefer <see cref="StaysOpen"/>.
223-
/// </summary>
224-
[Obsolete]
225-
public bool StaysOpenOnEdit
226-
{
227-
get { return (bool) GetValue(StaysOpenOnEditProperty); }
228-
set { SetValue(StaysOpenOnEditProperty, value); }
229-
}
230-
231217
public static readonly DependencyProperty IsPopupOpenProperty = DependencyProperty.Register(
232218
nameof(IsPopupOpen), typeof (bool), typeof (PopupBox), new FrameworkPropertyMetadata(default(bool), IsPopupOpenPropertyChangedCallback));
233219

0 commit comments

Comments
 (0)