gpt4 book ai didi

wpf - 无法将类作为参数传递给命令

转载 作者:行者123 更新时间:2023-12-01 13:46:35 25 4
gpt4 key购买 nike

我是编程新手,我很难通过我在 <Window.Resources> 中创建的类(class)在 XAML作为命令中的参数。

  <Window.Resources>
<local:RegisterWindowViewModel x:Key="RegViewModel"/>
<local:RegisterValidationConverter x:Key="RegValid"/>
<local:UsersViewModel x:Key="UVM"/>
</Window.Resources>

这是带有命令绑定(bind)的按钮

    <Button Name="signupButton" DataContext="{StaticResource UVM}"
Height="50" Width="150" BorderBrush="Black" BorderThickness="2"
FontSize="20" FontWeight="SemiBold"
Style="{StaticResource AccentedSquareButtonStyle}"
Command="{Binding GetRegisterItemCommand}"
CommandParameter="{Binding RegViewModel}">
Sign Up
</Button>

我认为这段代码 CommandParameter="{Binding RegViewModel}"不正确,但我只是不知道如何替换它...

因此我得到一个 null而不是我在命令函数中的对象。功能本身没问题;我已经对其进行了很多测试,并且我尝试传递另一个对象( TextBox ),并且它工作正常。

我只是不明白语法。

甚至可以传递在资源中创建的类吗?

我将非常感谢您的帮助。

最佳答案

您尝试的方式表明它可以在当前 DataContext 上找到 RegViewModel

要指向您的 View 模型本身,您可以说您的绑定(bind)源是您的 RegViewmodel,并进行以下更改。在这种情况下,完整的 RegViewModel 将传递给 CommandParameter

CommandParameter="{Binding Source={StaticResource RegViewModel}}"

关于wpf - 无法将类作为参数传递给命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35559536/

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