以前一直在java的B/S,此次被要求作一個C/S,其中客戶端主要是界面和socket通訊。由於沒有使用過C#和Visual Studio的控件編程,先來個HelloWorld.html
個人環境是visual studio 2010,其餘版本例如2008,2012 均可以java
1.啓動vs2010,新建->項目,獲得下圖:算法
2. 選擇visual c# ->windows->Windows 窗體應用程序編程
3.選擇項目路徑(不必定跟個人同樣),名稱儘可能能讓本身和別人明白。c#
4.窗體Form1 就是咱們即將要編輯的位置windows
5.目前只用到button,textbox 控件,因此選擇工具箱裏的Button並拖到Form1編輯框裏,TextBox也同樣。socket
6.按鈕佈局以下圖,頂上是TextBox控件,下面是20個button控件,還有一個連接控件,計劃實現加減乘除,平方,開方,log, ln的功能工具
7.以下圖,單擊其中一個button按鈕,在右下方的屬性裏找到text並更名,其餘的屬性暫時不要動,之後能夠慢慢改。佈局
8.修改後的Form1編輯框以下圖左邊所示。spa
下面就是代碼的編寫了:
9.雙擊Form1 窗體後,進入Form1.cs*界面(說白了是剛纔窗體的代碼編輯框,也是Form1窗體功能實現的界面)
10.下圖是初始程序,咱們要作的是往裏面加代碼。
完整代碼:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace jisuangji
{
public partial class Form1 : Form
{
double a = 0;
double b = 0;
bool c = false ;
string d;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button9_Click(object sender, EventArgs e) // button9_Click是對應個人1鍵,若是單純複製代碼,可是跟個人窗體佈局不一樣,同樣會報錯
{ // 算法沒問題,只要單擊相應的鍵,進入填入相應的算法便可
if ( c ==true )
{
textBox1 .Text ="";
c=false ;
}
textBox1.Text+="1";
}
private void button10_Click(object sender, EventArgs e) // button10_Click是對應個人2鍵
{
if(c==true )
{
textBox1.Text="";
c=false ;
}
textBox1.Text+="2";
}
private void button11_Click(object sender, EventArgs e) //對應個人3鍵
{
if (c==true )
{
textBox1 .Text ="";
c=false ;
}
textBox1 .Text +="3";
}
private void button5_Click(object sender, EventArgs e) //對應個人4鍵
{
if(c==true )
{
textBox1.Text="";
c=false ;
}
textBox1.Text+="4";
}
private void button6_Click(object sender, EventArgs e) //對應個人5鍵
{
if(c==true )
{
textBox1.Text="";
c=false ;
}
textBox1.Text+="5";
}
private void button7_Click(object sender, EventArgs e) //對應個人6鍵
{
if(c==true )
{
textBox1.Text="";
c=false ;
}
textBox1.Text+="6";
}
private void button1_Click(object sender, EventArgs e) //對應個人7鍵
{
if(c==true )
{
textBox1.Text="";
c=false ;
}
textBox1.Text+="7";
}
private void button2_Click(object sender, EventArgs e) //對應個人8鍵
{
if(c==true )
{
textBox1.Text="";
c=false ;
}
textBox1.Text+="8";
}
private void button3_Click(object sender, EventArgs e) //對應個人9鍵
{
if(c==true )
{
textBox1.Text="";
c=false ;
}
textBox1.Text+="9";
}
private void button13_Click(object sender, EventArgs e) //對應我0的鍵,增長了除數不能爲0的判斷
{
if(c==true )
{
textBox1.Text="";
c=false ;
}
textBox1.Text += "0";
if (d == "/")
{
textBox1.Clear();
MessageBox.Show("除數不能爲零", "錯誤提示", MessageBoxButtons.OK, MessageBoxIcon.Warning); }
}
private void button4_Click(object sender, EventArgs e) //對應個人+鍵
{
c = true;
b = double.Parse(textBox1.Text);
d = "+";
}
private void button8_Click(object sender, EventArgs e) //對應個人-鍵
{
c = true;
b = double.Parse(textBox1.Text);
d = "-";
}
private void button12_Click(object sender, EventArgs e) //對應個人*鍵
{
c = true;
b = double.Parse(textBox1.Text);
d = "*";
}
private void button16_Click(object sender, EventArgs e) //對應個人/鍵
{
c = true;
b = double.Parse(textBox1.Text);
d = "/";
}
private void button17_Click(object sender, EventArgs e) //對應個人平方鍵
{
c = true;
b = double.Parse(textBox1.Text);
d = "x2";
}
private void button18_Click(object sender, EventArgs e) //對應個人開方鍵
{
c = true;
b = double.Parse(textBox1.Text);
d = "sqrt";
}
private void button19_Click(object sender, EventArgs e) //對應個人log鍵
{
c = true;
b = double.Parse(textBox1.Text);
d = "log";
}
private void button20_Click(object sender, EventArgs e) //對應個人ln鍵
{
c = true;
b = double.Parse(textBox1.Text);
d = "ln";
}
private void button15_Click(object sender, EventArgs e) //對應個人=鍵
{
switch (d)
{
case "+": a = b + double.Parse(textBox1.Text); break;
case "-": a = b - double.Parse(textBox1.Text); break;
case "*": a = b * double.Parse(textBox1.Text); break;
case "/": a = b / double.Parse(textBox1.Text); break;
case "x2": a = b * double.Parse(textBox1.Text); break;
case "sqrt": a = Math.Sqrt(b ); break;
case "log": a = Math.Log(double.Parse(textBox1.Text),b ); break;
case "ln": a = Math.Log(b, Math.E); break;
}
textBox1.Text = a + "";
c = true;
}
private void button14_Click(object sender, EventArgs e) //對應個人c鍵,實現了清零的功能
{
textBox1.Text = "";
}
/* private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://home.cnblogs.com/u/linshuangxi/");
}
*/
//我註釋掉是由於這是一個鏈接到個人博客的地址,首先須要在窗體拖進來一個LinkLabel控件。
// 而後把註釋去掉就可用了
}
}
11.點擊運行界面,就會出來窗體,偷個懶,我把基本功能效果圖和添加屬性後的圖都放在一塊兒了,以下圖:
後言:
1.儘可能不要複製代碼,本身動手,豐衣足食
2.第一次設計的話,防止出錯,保持窗體佈局跟個人同樣,這樣複製代碼就不會有問題
3. 剛剛講到按鈕的屬性設計,先把基本功能實現,而後能夠在屬性裏設計文字大小,顏色,背景等
屬性設計後的效果圖: