a practice project to learn basics of C# and WinForm programming.
- Create a calculator application
- Offer only simple arithmetic operations like add, subtract, multiply and divide
- Do NOT add memory functions
- Do NOT add support for decimal point
- Perform arithmetic operations on integers only
- Show warning dialog when user tries to divided by zero
- Show dialog "Are you sure you want to quit?", when user clicks the close button of the window
- Show result
- Show a sequence of operations on the screen.
See this mock UI for reference. It shows the result "15", and also shows the numbers and operators user pressed, "2+19+4-10" ,to get the result.