gpt4 book ai didi

c# - 嵌套的 UserControl 事件不适用于 MVVM/WPF 场景中的 EventTrigger/InvokeCommandAction

转载 作者:行者123 更新时间:2023-11-30 22:57:44 29 4
gpt4 key购买 nike

我正在使用带有 Prism (MVVM) 的 WPF,并尝试为几个类构建一个 Inspector。其中一个类是 Vector3:

<Grid x:Name="Vector3Root" Background="White">
<StackPanel Orientation="Horizontal">
<StackPanel Orientation="Horizontal">
<xctk:DoubleUpDown Tag="X" Style="{StaticResource DoubleUpDownStyle}" Value="{Binding X}" ValueChanged="Vector3ValueChanged"/>
</StackPanel>
<StackPanel Orientation="Horizontal">
<xctk:DoubleUpDown Tag="Y" Style="{StaticResource DoubleUpDownStyle}" Value="{Binding Y}" ValueChanged="Vector3ValueChanged"/>
</StackPanel>
<StackPanel Orientation="Horizontal">
<xctk:DoubleUpDown Tag="Z" Style="{StaticResource DoubleUpDownStyle}" Value="{Binding Z}" ValueChanged="Vector3ValueChanged"/>
</StackPanel>
</StackPanel>
</Grid>

及其代码隐藏

namespace SimROV.WPF.Views{
public partial class Vector3View : UserControl
{
public Vector3View()
{
InitializeComponent();
}

public static readonly RoutedEvent SettingConfirmedEvent =
EventManager.RegisterRoutedEvent("SettingConfirmed", RoutingStrategy.Bubble,
typeof(RoutedEventHandler), typeof(Vector3View));

public event RoutedEventHandler SettingConfirmed
{
add { AddHandler(SettingConfirmedEvent, value); }
remove { RemoveHandler(SettingConfirmedEvent, value); }
}

public void Vector3ValueChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
{
RaiseEvent(new RoutedEventArgs(SettingConfirmedEvent));
}
}}

我正在努力解决的问题是我无法在另一个 ValueChanged 上捕捉到任何触发事件( SettingConfirmedUserControl )使用 Vector3View 的 ViewModel :

<UserControl
x:Class="SimROV.WPF.Views.TransformView"
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:views="clr-namespace:SimROV.WPF.Views"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions"
xmlns:prism="http://prismlibrary.com/"

mc:Ignorable="d" >

<Grid x:Name="TransformRoot" Background="White">
<StackPanel Orientation="Vertical">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Position" Margin="5"/>
<!--<ContentPresenter ContentTemplate="{StaticResource Vector3Template}"/>-->
<views:Vector3View x:Name="PositionVector3">
<i:Interaction.Triggers>
<i:EventTrigger EventName="SettingConfirmed">
<prism:InvokeCommandAction Command="{Binding PositionValueChangedCommand}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</views:Vector3View>
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Text="Rotation" Margin="5"/>
<!--<ContentPresenter ContentTemplate="{StaticResource Vector3Template}"/>-->
<views:Vector3View x:Name="RotationVector3" SettingConfirmed="RotationValueChangedEvent"/>
</StackPanel>
</StackPanel>
</Grid>

此时我可以抓到 SettingConfirmedRotationValueChangedEvent在代码隐藏上,但由于我遵循 MVVM 模式,这对我不起作用,这就是我使用 EventTrigger 的原因和 InvokeCommandActionTransformViewModel 上捕捉这些事件,但那些永远不会被解雇。这是TransformViewModel :

namespace SimROV.WPF.ViewModels{
public class TransformViewModel : BindableBase
{
private ICommand _positionCommand;

public ICommand PositionValueChangedCommand => this._positionCommand ?? (this._positionCommand = new DelegateCommand(PositionChanged));
private void PositionChanged()
{

}
public TransformViewModel()
{

}
}}

PositionChanged就是永远不会被解雇,我完全不明白为什么。

我不知道这是否相关,但 Transform 是 ObservableCollection<IComponent> 的一个元素在另一个 ViewModel 中,由 ListView 呈现用ItemContainerStyle ,它有一个 ContentPresenter里面有一个 ContentTemplateSelector。

谁能告诉我为什么会发生这种情况以及如何解决它?

谢谢。

最佳答案

你的 EventTriggerInvokeCommandAction如果 DataContext 应该可以正常工作的 Vector3View实际上是一个TransformViewModel所以绑定(bind)到 PositionValueChangedCommand属性成功。

关于c# - 嵌套的 UserControl 事件不适用于 MVVM/WPF 场景中的 EventTrigger/InvokeCommandAction,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53432795/

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