列出功能列表

时间:2013-02-25 07:02:27

标签: c# wpf list mvvm

在我的视图模型中,我有一些数学函数,如add,subtract。在我的用户界面中,我有两个文本框,其中包含一个输入,然后有一个组合框。这个组合框将包含所有数学函数的名称(加,减)。在OK按钮上我想要执行所选功能。我怎么能这样做我是说如何在组合框中显示函数名列表?我可以在那里显示字符串,但函数如何命名。并选择了功能。

<ComboBox ItemsSource="{Binding Actions}" SelectedItem="{Binding SelectedAction}" />

查看模型

public IEnumerable<string> Actions
{
    get
    {
        var list = new List<string>();
        list.Add("Add");      // Instead of adding strings, I want to add functions.
        list.Add("Subtract"); 
        return list;
    }
}

public int AddFunction()
{
    return numberA + numberB;
}

public int SubtractFunction()
{
    return numberA - numberB;
}

2 个答案:

答案 0 :(得分:1)

下面一个可能有帮助的例子:

TODO: 1.结果应绑定到UI中的另一个文本块 2. ComboBox_SelectionChanged应该通过ICommand完成。参考:mvvm-binding-treeview-item-changed-to-icommand

    public IList<MyComboboxItem> Actions
    {
        get
        {
            var list = new List<MyComboboxItem> { new MyComboboxItem(AddFunction), new MyComboboxItem(SubtractFunction) };
            return list;
        }
    }

    public int numberA { get;  set; }
    public int numberB { get; set; }

    public int Result { get; private set; }

    public void AddFunction()
    {
        Result = numberA + numberB;
    }

    public void SubtractFunction()
    {
        Result = numberA - numberB;
    }

    private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        var comboboxItem = e.AddedItems[0] as MyComboboxItem;
        if (comboboxItem != null)
            comboboxItem.Action.Invoke();
    }

    public event PropertyChangedEventHandler PropertyChanged;




  public class MyComboboxItem 
  {
    public Action Action { get; private set; } 

    public MyComboboxItem(Action action)
    {
        this.Action = action;
    }

    public override string ToString()
    {
        return Action.Method.Name;
    }
}

答案 1 :(得分:1)

所以你想要的是拥有一个委托列表,然后是一个将委托转换为方法名称的转换器。

在ViewModel中,让Actions属性返回委托列表。使用预定义的Func,这是一个不带参数的方法并返回int:

public IEnumerable<Func<int>> Actions
{
    get
    {
        List<Func<int>> list = new List<Func<int>>();
        list.Add( AddFunction );
        list.Add( SubstractFunction );
        return list;
    }
}

接下来,实现转换器。通常,转换器是“视图”的一部分,因此将其放在cs文件后面的代码中。此转换将Func<int>转换为字符串,并使用反射执行此操作:

[ValueConversion( typeof( Func<int> ), typeof( string ) )]
public class FnConverter : IValueConverter
{
    public object Convert( object value, Type targetType, object parameter, CultureInfo culture )
    {
        Func<int> fn = value as Func<int>;
        return fn.Method.Name;
    }

    public object ConvertBack( object value, Type targetType, object parameter, CultureInfo culture )
    {
        return null;
    }
}

最后,您需要在XAML中使用转换器。但为此,您需要指定应用转换器的组合框的项模板。

<!-- earlier in code define the converter as a resource -->
<Window.Resources>
    <src:FnConverter x:Key="conv" />
</Window.Resources>

...

<!-- now the combo box -->
<ComboBox Margin="4" ItemsSource="{Binding Path=Actions}">
    <ComboBox.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding Path=., Converter={StaticResource conv}}"  />
        </DataTemplate>
    </ComboBox.ItemTemplate>
</ComboBox>

说,我认为更优雅的解决方案是在视图模型中保留MethodInfo列表。使用自定义属性生成此列表。下面是一些代码。请注意以下几点:

  1. PresentingAttribute是一个自定义属性。它派生自System.Reflection.Attribute。它什么都没有。如果要添加“Label”,“Description”等参数,可以使用
  2. 使用`[Presenting]`
  3. 在组合框中装饰所需的方法
  4. 现在,Actions使用反射。注意过滤谓词的'Where'和lambda,它只返回具有我们自定义属性的方法。
  5. 您必须修改转换器才能使用MethodInfo。
  6. namespace SO
    {
        class PresentingAttribute : Attribute
        {
        }
    
        class FnVM
        {
            public int numA { get; set; }
            public int numB { get; set; }
    
            public IEnumerable<MethodInfo> Actions
            {
                get
                {
                    return typeof( FnVM ).GetMethods().Where( minfo => 
                        minfo.GetCustomAttribute( typeof( PresentingAttribute ) ) != null
                    );
                }
            }
    
    
            [Presenting]
            public int AddFunction( )
            {
                return numA + numB;
            }
    
            [Presenting]
            public int MulFunction( )
            {
                return numA * numB;
            }
    
        }
    }