Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5991917
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T23:27:25+00:00 2026-05-22T23:27:25+00:00

I recently started using WPF and the MVVM framework, one thing that I have

  • 0

I recently started using WPF and the MVVM framework, one thing that I have wanted to do is to have a type safe implementation of ICommand so I do not have to cast all the command paramaters.

Does anyone know of a way to do this?

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T23:27:26+00:00Added an answer on May 22, 2026 at 11:27 pm

    Not using that syntax, as you probably found:

    error CS0701: “System.Func`’ is not a valid constraint. A constraint must be an interface, a non-sealed class or a type parameter

    Your best bet is to encapsulate the Func<E,bool> semantics in an interface, like:

    interface IFunctor<E>
    {
       bool Execute(E value);
    }
    

    and then use this interface in the class definition. Although, I am wondering what you’re looking to accomplish as there may be another approach to your problem.

    Per the comment that @Alex is looking for a strongly typed ICommand implementation:

    public FuncCommand<TParameter> : Command
    {
        private Predicate<TParameter> canExecute;
        private Action<TParameter> execute;
    
        public FuncCommand(Predicate<TParameter> canExecute, Action<TParameter> execute)
        {
            this.canExecute = canExecute;
            this.execute = execute;
        }
    
        public override bool CanExecute(object parameter)
        {
            if (this.canExecute == null) return true;
    
            return this.canExecute((TParameter)parameter);
        }
    
        public override void Execute(object parameter)
        {
            this.execute((TParameter)parameter);
        }
    }
    

    Used like so:

    public class OtherViewModel : ViewModelBase
    {
        public string Name { get; set; }
        public OtherViewModel(string name) { this.Name = name; }
    }
    
    public class MyViewModel : ViewModelBase
    {
        public ObservableCollection<OtherViewModel> Items { get; private set; }
        public ICommand AddCommand { get; private set; }
        public ICommand RemoveCommand { get; private set; }
    
        public MyViewModel()
        {
            this.Items = new ObservableCollection<OtherViewModel>();
    
            this.AddCommand = new FuncCommand<string>(
                (name) => !String.IsNullOrEmpty(name),
                (name) => this.Items.Add(new OtherViewModel(name)));
            this.RemoveCommand = new FuncCommand<OtherViewModel>(
                (vm) => vm != null,
                (vm) => this.Items.Remove(vm));
        }
    }
    

    XAML:

    <ListBox x:Name="Items" ItemsSource="{Binding Items}" />
    <Button Content="Remove"
            Command="{Binding RemoveCommand}"
            CommandParameter="{Binding SelectedItem, ElementName=Items}" />
    <StackPanel Orientation="Horizontal">
        <TextBox x:Name="NewName" />
        <Button Content="Add"
                Command="{Binding AddCommand}"
                CommandParameter="{Binding Text, ElementName=NewName}" />
    </StackPanel>
    

    I would recommend using Microsoft’s DelegateCommand or RelayCommand, or any other implementation of either of these.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I recently started using C# and WPF for one of my projects. Is there
I have recently started using generics in java, and in that attempt tried to
I recently started using scons to build several small cross-platform projects. One of these
I recently started using Linux as my primary OS. What are the tools that
I have recently started using Vim as my text editor and am currently working
I've recently started using it. However, after running it against one of my company's
I've recently started using WPF for developing my applications. Now I've come to a
I've recently started develping an application using WPF and I'cant really wrap my mind
I've recently started using ctags on my projects. I currently have the following setup:
I have just recently started using NetBeans IDE (6.9.1) and have used it to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.