更新整理

This commit is contained in:
GG Z
2025-04-24 20:56:44 +08:00
parent 155cef46f8
commit 5b6d67b571
813 changed files with 14437 additions and 12362 deletions

View File

@@ -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);
}