Skip to content
Merged
Changes from all commits
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
6 changes: 3 additions & 3 deletions src/MaterialDesignThemes.Wpf/TabAssist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ public static void SetHeaderPanelMargin(DependencyObject element, Thickness valu
public static Thickness GetHeaderPanelMargin(DependencyObject element)
=> (Thickness) element.GetValue(HeaderPanelMarginProperty);

internal static Visibility GetBindableIsItemsHost(DependencyObject obj)
public static Visibility GetBindableIsItemsHost(DependencyObject obj)
=> (Visibility)obj.GetValue(BindableIsItemsHostProperty);

internal static void SetBindableIsItemsHost(DependencyObject obj, Visibility value)
public static void SetBindableIsItemsHost(DependencyObject obj, Visibility value)
=> obj.SetValue(BindableIsItemsHostProperty, value);

internal static readonly DependencyProperty BindableIsItemsHostProperty =
public static readonly DependencyProperty BindableIsItemsHostProperty =
DependencyProperty.RegisterAttached("BindableIsItemsHost", typeof(Visibility), typeof(TabAssist), new PropertyMetadata(Visibility.Collapsed, OnBindableIsItemsHostChanged));

private static void OnBindableIsItemsHostChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
Expand Down
Loading