更新整理
This commit is contained in:
@@ -4,12 +4,14 @@
|
||||
/* Based on Windows UI Library
|
||||
Copyright(c) Microsoft Corporation.All rights reserved. */
|
||||
|
||||
using WPFluent.Input;
|
||||
|
||||
using System.Collections.Specialized;
|
||||
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Input;
|
||||
|
||||
using WPFluent.Input;
|
||||
|
||||
|
||||
// ReSharper disable once CheckNamespace
|
||||
namespace WPFluent.Controls;
|
||||
@@ -171,10 +173,10 @@ public class BreadcrumbBar : System.Windows.Controls.ItemsControl
|
||||
[Bindable(true)]
|
||||
[Category("Action")]
|
||||
[Localizability(LocalizationCategory.NeverLocalize)]
|
||||
public ICommand Command { get => (ICommand)GetValue(CommandProperty); set => SetValue(CommandProperty, value); }
|
||||
internal ICommand Command { get => (ICommand)GetValue(CommandProperty); set => SetValue(CommandProperty, value); }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the <see cref="RelayCommand{T}"/> triggered after clicking
|
||||
/// </summary>
|
||||
public IRelayCommand TemplateButtonCommand => (IRelayCommand)GetValue(TemplateButtonCommandProperty);
|
||||
internal IRelayCommand TemplateButtonCommand => (IRelayCommand)GetValue(TemplateButtonCommandProperty);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user