gpt4 book ai didi

c# - 如何将 Nullable 值传递给 CommandParameter?

转载 作者:太空狗 更新时间:2023-10-29 21:53:04 33 4
gpt4 key购买 nike

我正在使用 MVVM Light 库。从这个图书馆我使用 RelayCommand<T>使用 T 类型的参数定义命令.

现在我定义了一个RelayCommand这需要一个 Nullable<bool> 类型的参数:

    private RelayCommand<bool?> _cmdSomeCommand;
public RelayCommand<bool?> CmdSomeCommand
{
get
{
if (_cmdSomeCommand == null)
{ _cmdSomeCommand = new RelayCommand<bool?>(new Action<bool?>((val) => { /* do work */ })); }
return _cmdSomeCommand;
}
}

如何从我的 XAML 代码分配 CommandParameter?

我试图传递一个 bool 值,但这会导致以下异常:

System.InvalidCastException: Invalid cast from 'System.Boolean' to 'System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]'.

我还尝试定义包含 bool?值并从 XAML 引用它们:

public static class BooleanHelper
{
public static bool True { get { return true; } }
public static bool False { get { return false; } }

public static bool? NullableTrue { get { return true; } }
public static bool? NullableFalse { get { return false; } }
}

XAML:

<Button Command="{Binding CmdSomeCommand}" CommandParameter="{x:Static my:BooleanHelper.NullableTrue}" />

但这会导致抛出相同的异常。我也试过返回 new Nullable<bool>(true) , 但正如预期的那样,这具有相同的结果。

最佳答案

看起来 MVVM Light 在 ExecuteCanExecute 之间以不同方式处理参数并且没有以正确的方式处理 nullable 是错误的。

请参阅 https://github.com/paulcbetts/mvvmlight/blob/master/GalaSoft.MvvmLight/GalaSoft.MvvmLight%20(NET35)/Command/RelayCommandGeneric.cs#L198 处的代码第 198-205 行

那里发生的事情会导致您的异常,并且可以使用以下代码轻松重现:

object t1 = (bool?)true;
// issue: for Nullable<T>, GetType will return T
if (t1.GetType() != typeof(bool?))
{
if (t1 is IConvertible)
{
var val = Convert.ChangeType(t1, typeof(bool?), null);
}
}

我怀疑你只能提交错误报告,因为你可以完美地将可空作为参数传递,它处理有错误

关于c# - 如何将 Nullable<Boolean> 值传递给 CommandParameter?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41281435/

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