首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > 其他 > 采用 Windows 表单的简单计算器

采用 Windows 表单的简单计算器

资 源 简 介

翻译 maninwest@Codeforge作者:Yvan Rodrigues@CodeProject 使用代码 using System; using System.Windows.Forms; namespace RedCell.App.Calculator.Example { public partial class Form1 : Form { private double accumulator = 0; private char lastOperation; public Form1() { InitializeComponent(); } private void Operator_Pressed(object sender, EventArgs e) { // An operator was pressed; perform the last operation and store the new operator. char operation = (sender as Button).Text[0];

文 件 列 表

RedCell.App.Calculator.Example.sln
RedCell.App.Calculator.Example.sln.GhostDoc.xml
RedCell.App.Calculator.Example.v11.suo
RedCell.App.Calculator.Example
App.config
bin
Form1.cs
Form1.Designer.cs
Form1.resx
obj
Program.cs
Properties
RedCell.App.Calculator.Example.csproj
VIP VIP
0.187618s