gpt4 book ai didi

WPF DataGrid ContextMenu 命令绑定(bind)到 MVVMLight RelayCommand 并不总是有效

转载 作者:行者123 更新时间:2023-12-04 14:44:01 25 4
gpt4 key购买 nike

我有一个 WPF DataGrid我要为其添加 ContextMenu使用 MVVM。这个DataGrid位于 UserControl (我删除了一堆我认为与问题本质无关的东西):

<UserControl x:Class="Legend.MarkerMultiStatisticsControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:legend="clr-namespace:Legend"
Name="Self"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<GroupBox Header="{Binding ElementName=Self, Path=StaisticsData.Title}">
<DockPanel>
<DataGrid
DataContext="{Binding ElementName=Self}"
ItemsSource="{Binding ElementName=Self, Path=StaisticsData.Statistics}"
SelectionMode="Single"
CurrentCell="{Binding ElementName=Self, Path=CurrentCell, Mode=OneWayToSource}">
<DataGrid.ContextMenu>
<ContextMenu DataContext="{Binding RelativeSource={RelativeSource Mode=Self}, Path=PlacementTarget.DataContext}"
ItemsSource="{Binding Path=Commands}">
<ContextMenu.ItemContainerStyle>
<Style TargetType="MenuItem">
<Setter Property="Header" Value="{Binding Header}"></Setter>
<Setter Property="Command" Value="{Binding Command, diag:PresentationTraceSources.TraceLevel=High}"></Setter>
<Setter Property="CommandParameter" Value="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType=DataGrid}, Path=DataContext.CurrentLegendCell}"></Setter>
</Style>
</ContextMenu.ItemContainerStyle>
</ContextMenu>
</DataGrid.ContextMenu>
</DataGrid>
</DockPanel>
</GroupBox>
</UserControl>

此控件具有 DependencyProperty调用 Command我绑定(bind)菜单的 ItemsSource它的类型是 ObservableCollection<LegendCommand>LegendCommand存在
public class LegendCommand : ObservableObject
{
private string _header;
private ICommand _command;

public string Header
{
get { return _header; }
set { Set(()=>Header, ref _header, value); }
}

public ICommand Command
{
get { return _command; }
set { Set(() => Command, ref _command, value); }
}
}

这些命令是在我的 View 模型的不同位置生成的。

在一个地方(在 Adapter 类的 Commands 绑定(bind)到控件的 Commands 中)我有以下内容:
Commands.Add(new LegendCommand
{
Header = "From inside adapter...",
Command = new RelayCommand<LegendCellInfo>(info =>
{
MessageBox.Show(string.Format("State: {0}, Property: {1}", info.State, info.PropertyName));
})
});

在不同的地方(持有 Adapter 的 View 模型)我有以下内容:
adapter.Commands.Add(new LegendCommand
{
Header = "Select",
Command = new RelayCommand<LegendCellInfo>(info =>
{
// selection logic
})
});

我的问题是“从内部适配器...”命令已执行,但“选择”没有。我在“选择”代码中放置了一个断点,但它从未被调用过。
ContextMenu 的绑定(bind)的 ItemsSourceCommands属性有效,因为我在菜单中看到了这两个选项。 ICommans 的绑定(bind)' 可能有效,因为执行了其中一个命令。

我调试了代码和绑定(bind),并获得了以下信息:
Commands集合包含两个元素,其哈希码为 40262542 和 26818564(通过在 Visual Studio 的即时窗口中运行 adapter.Commands[0].Command.GetHashCode()adapter.Commands[1].Command.GetHashCode() 获得它们)。

当我右键单击 DataGrid 时,绑定(bind)跟踪给出以下输出:
System.Windows.Data Warning: 56 : Created BindingExpression (hash=11440639) for Binding (hash=54536677)
System.Windows.Data Warning: 58 : Path: 'Command'
System.Windows.Data Warning: 60 : BindingExpression (hash=11440639): Default mode resolved to OneWay
System.Windows.Data Warning: 61 : BindingExpression (hash=11440639): Default update trigger resolved to PropertyChanged
System.Windows.Data Warning: 62 : BindingExpression (hash=11440639): Attach to System.Windows.Controls.MenuItem.Command (hash=54276594)
System.Windows.Data Warning: 67 : BindingExpression (hash=11440639): Resolving source
System.Windows.Data Warning: 70 : BindingExpression (hash=11440639): Found data context element: MenuItem (hash=54276594) (OK)
System.Windows.Data Warning: 78 : BindingExpression (hash=11440639): Activate with root item LegendCommand (hash=5940773)
System.Windows.Data Warning: 108 : BindingExpression (hash=11440639): At level 0 - for LegendCommand.Command found accessor RuntimePropertyInfo(Command)
System.Windows.Data Warning: 104 : BindingExpression (hash=11440639): Replace item at level 0 with LegendCommand (hash=5940773), using accessor RuntimePropertyInfo(Command)
System.Windows.Data Warning: 101 : BindingExpression (hash=11440639): GetValue at level 0 from LegendCommand (hash=5940773) using RuntimePropertyInfo(Command): RelayCommand`1 (hash=40262542)
System.Windows.Data Warning: 80 : BindingExpression (hash=11440639): TransferValue - got raw value RelayCommand`1 (hash=40262542)
System.Windows.Data Warning: 89 : BindingExpression (hash=11440639): TransferValue - using final value RelayCommand`1 (hash=40262542)
System.Windows.Data Warning: 56 : Created BindingExpression (hash=31617173) for Binding (hash=54536677)
System.Windows.Data Warning: 58 : Path: 'Command'
System.Windows.Data Warning: 60 : BindingExpression (hash=31617173): Default mode resolved to OneWay
System.Windows.Data Warning: 61 : BindingExpression (hash=31617173): Default update trigger resolved to PropertyChanged
System.Windows.Data Warning: 62 : BindingExpression (hash=31617173): Attach to System.Windows.Controls.MenuItem.Command (hash=16119107)
System.Windows.Data Warning: 67 : BindingExpression (hash=31617173): Resolving source
System.Windows.Data Warning: 70 : BindingExpression (hash=31617173): Found data context element: MenuItem (hash=16119107) (OK)
System.Windows.Data Warning: 78 : BindingExpression (hash=31617173): Activate with root item LegendCommand (hash=16131920)
System.Windows.Data Warning: 107 : BindingExpression (hash=31617173): At level 0 using cached accessor for LegendCommand.Command: RuntimePropertyInfo(Command)
System.Windows.Data Warning: 104 : BindingExpression (hash=31617173): Replace item at level 0 with LegendCommand (hash=16131920), using accessor RuntimePropertyInfo(Command)
System.Windows.Data Warning: 101 : BindingExpression (hash=31617173): GetValue at level 0 from LegendCommand (hash=16131920) using RuntimePropertyInfo(Command): RelayCommand`1 (hash=26818564)
System.Windows.Data Warning: 80 : BindingExpression (hash=31617173): TransferValue - got raw value RelayCommand`1 (hash=26818564)
System.Windows.Data Warning: 89 : BindingExpression (hash=31617173): TransferValue - using final value RelayCommand`1 (hash=26818564)

如果我理解正确,我们可以看到发生了两个绑定(bind)操作——第一个导致绑定(bind)到 'RelayCommand'1 (hash=40262542)。第二个到 'RelayCommand'1 (hash=26818564) - 顺便说一下,这些是我的两个命令的哈希码。

此外,不会发生异常或其他错误。

我被困在我的调查中。还有哪里可以看?

更新 1 :
当我将“选择”命令中的代码更改为以下代码而不是我之前的代码时:
adapter.Commands.Add(new LegendCommand
{
Header = "Select",
Command = new RelayCommand<LegendCellInfo>(info =>
{
MessageBox.Show("yes");
})
});

然后代码突然开始工作......

更新 2 :
原始命令使用 Adapter 的成员类(class)。在线搜索 MVVMLight 问题 RelayCommand和成员函数发现了这个 SO 问题: RelayCommand with Argument throwing MethodAccessException
(但显然我想继续使用 MVVMLight ......)

更新 3 : 阅读 RelayCommand 的 MVVMLight 代码并且它没有保存对该方法的硬引用,所以我认为没有什么能让 lambda 保持活力。现在将重构代码并在此处更新,如果它有效。

最佳答案

实际上原因是“选择”命令没有被 MVVMLight 的弱引用保持事件状态。
我在这里更详细地写了它:http://blogs.microsoft.co.il/dinazil/2015/01/16/relaycommands-weakfuncs/

关于WPF DataGrid ContextMenu 命令绑定(bind)到 MVVMLight RelayCommand<T> 并不总是有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27963674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com