什么方面
到51aspx.com
codeproject.com里看看

解决方案 »

  1.   

    到这里 下载 http://download.csdn.net/
      

  2.   

    简单的计算器代码实例:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;namespace Calculator
    {
        public partial class Form1 : Form
        {        private long iNum1;
            private char cOperator;
            private bool bNumBegins;        public Form1()
            {
                InitializeComponent();
                InitMembers();
            }        private void InitMembers()
            {
                iNum1 = 0;
                cOperator = '=';
                bNumBegins = true;
            }
            private void Numbers_Click(object sender, System.EventArgs e)
            {
                if (txtOutput.Text == "Error")
                {
                    txtOutput.Text = "0";
                }            try
                {                long iCurrent = long.Parse(txtOutput.Text);
                    long i = long.Parse(((Button)sender).Text);                if (bNumBegins)
                    {
                        iCurrent = i;
                        bNumBegins = false;
                    }
                    else
                    {                    checked { iCurrent = (iCurrent * 10) + i; }
                    }                txtOutput.Text = iCurrent.ToString();
                }
                catch
                {
                    txtOutput.Text = "Error";
                    InitMembers();
                    return;
                }        }
            private void Operators_Click(object sender, System.EventArgs e)
            {
                char op = ((Button)sender).Text[0];
                long iCurrent, iResult;            try
                {
                    iCurrent = long.Parse(txtOutput.Text);
                    switch (cOperator)
                    {
                        case '+':
                            checked { iResult = iNum1 + iCurrent; }
                            break;
                        case '-':
                            checked { iResult = iNum1 - iCurrent; }
                            break;
                        case '*':
                            checked { iResult = iNum1 * iCurrent; }
                            break;
                        case '/':
                            checked { iResult = iNum1 / iCurrent; }
                            break;
                        default:
                            iResult = iCurrent;
                            break;
                    }
                }
                catch
                {
                    txtOutput.Text = "Error";
                    InitMembers();
                    return;
                }            txtOutput.Text = iResult.ToString();
                iNum1 = iResult;
                bNumBegins = true;
                cOperator = op;
            }    }
    }
      

  3.   

    C# 课程设计案例精编
    第3章 俄罗斯方块游戏的编制 41
    第4章 贪吃蛇游戏的编制 67
    第5章 员工管理信息系统 80
    第6章 房屋出租管理系统 108
    第7章 仓库管理信息系统 145
    第8章 研究生管理信息系统 176
    第9章 图书馆管理信息系统 209
    第10章 宿舍管理信息系统 246
    第11章 理财管理信息系统 279
    第12章 IT设备资产管理系统 316
      

  4.   

    忘记发网址了,补上
    http://download.csdn.net/source/1993905