@@ -10,7 +10,8 @@
+ OnDisabledCallback="OnDisabledCallback"
+ HeaderTemplate="LeftHeaderTemplate" ItemTemplate="LeftItemTemplate">
diff --git a/src/BootstrapBlazor/Components/Transfer/Transfer.razor.cs b/src/BootstrapBlazor/Components/Transfer/Transfer.razor.cs
index 5c01fa8c2f8..816a1ffa3e2 100644
--- a/src/BootstrapBlazor/Components/Transfer/Transfer.razor.cs
+++ b/src/BootstrapBlazor/Components/Transfer/Transfer.razor.cs
@@ -185,6 +185,14 @@ public partial class Transfer
[NotNull]
public Func? OnSetItemClass { get; set; }
+ ///
+ /// 获得/设置 组件是否被禁用回调方法,默认为 null
+ /// Gets or sets the callback method for whether the component is disabled. Default is null
+ /// v10.7.3
+ ///
+ [Parameter]
+ public Func? OnDisabledCallback { get; set; }
+
///
/// 获得/设置 左侧 Panel Header 模板
/// Gets or sets the left Panel Header template
diff --git a/src/BootstrapBlazor/Components/Transfer/TransferPanel.razor b/src/BootstrapBlazor/Components/Transfer/TransferPanel.razor
index fa6fd97ae75..283940e168a 100644
--- a/src/BootstrapBlazor/Components/Transfer/TransferPanel.razor
+++ b/src/BootstrapBlazor/Components/Transfer/TransferPanel.razor
@@ -1,11 +1,12 @@
-@namespace BootstrapBlazor.Components
+@namespace BootstrapBlazor.Components
@inherits BootstrapComponentBase