如何在WPF中使用MultiBinding

时间:2018-12-15 15:42:21

标签: c# wpf icommand multibinding

我想在单击按钮时传递两个文本参数。我使用了MultiBinding,并且可以部分使用,但是还不太正确。

转换器:

 0 2 2 0 1 1 0 0 0 2
Bag size BEFORE: 10

Bag after removing op: 
 0 0 1 1 0 0 0
Bag size AFTER: 7

在Command类中,我有那些参数,但是我不知道如何将其传递给类。我试图通过数组,但是没有用。

 public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        return values.Clone();
    }

现在参数位于public void Execute(object parameter) { var values = (object[]) parameter; var login = (string) values[0]; _execute(login); } values[0]中。

当我只有一个参数时,我的班级看起来像这样:

values[1]

预先感谢您, 问候!

0 个答案:

没有答案