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 7165933
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T14:19:54+00:00 2026-05-28T14:19:54+00:00

I am building a simple Calculator application. I’m also learning how to apply the

  • 0

I am building a simple Calculator application. I’m also learning how to apply the MVVM pattern in my app.

I would like each one of the “Digit” buttons of my calculator to bind to the same Command, where they would only differ in the digit (Text) of the button that raised the command.

For example, When button “1” is clicked, i would like to receive the notification about it, extract “1” from the Sender’s property, and continue the rest of the work needed.

This allows me to define a single method instead of 10 different handlers.

This is not possible as far as what i’ve seen in all MVVM tutorials till now, since the Command binding does not provide all this information to me when binding to the actual method that will handle the click.

Is there any way to easily do what i require?

  • 1 1 Answer
  • 0 Views
  • 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-28T14:19:55+00:00Added an answer on May 28, 2026 at 2:19 pm

    Assuming I understand what you’re trying to do, you can use the CommandParameter property to let different buttons supply values to the same command. For example:

    ...
        <Button Content="1" Command="{Binding ButtonClickCommand}" CommandParameter="1"/>
    
        <!-- Or, bind directly to the button's content using RelativeSource, like so: -->
        <Button Content="2" Command="{Binding ButtonClickCommand}"                    
                            CommandParameter="{Binding RelativeSource={RelativeSource Self}, Path=Content}"/>
    ...
    

    And in your command’s delegate method:

    private void ButtonClickCommandHandler(object parameter)
    {
        switch(int.Parse(parameter.ToString()))
        {
            case 1:
            ...
            case 2:
            ...
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm building simple dictionary application using WPF. I'm using MVVM pattern, databinding and FlowDocument
Am new to Android, and am building a simple calculator app. I want to
I'm building a simple Todo List application where I want to be able to
I am building a simple Django app that will use scribd to display documents.
I'm building a simple ASP.NET web application in VS 2008 with a SQL 2005
I'm building a simple accounting app to be used for personal finance. A user
I'm building a simple web based forum application. I want to allow users to
I'm building a very simple voiceXML app to allow people to make recordings. But
I'm building simple application on as3. Kind of starship game. What I want to
I was building a simple web based calculator which takes equations from a HTML

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.