Giter Club home page Giter Club logo

simplecalc's Issues

Reusing Code

In your article you mentioned having to write a unique method for every button, but that's not really necessary, just change the code to:

        private void button_Click(object sender, RoutedEventArgs e)
        {
            append((sender as Button).Content.ToString());
        }

Then you can use the same method for all the buttons. If you don't want to use the button Content you can set the Tag property in the XAML and then read it in the code the same way.

Also, to simplify the XAML, the button names aren't required, you can remove those. You could also get rid of the repeated Margin=0 code and repeated setting of the same Click handler by adding (right before "<Grid>"):

    <Window.Resources>
        <Style TargetType="{x:Type Button}">
            <Setter Property="Margin"  Value="0" />
            <EventSetter Event="Click" Handler="button_Click" />
        </Style>
    </Window.Resources>

Which may not seem worth it, but you can extend this to do many other things (e.g. setting a background graphic, changing font, ...)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.