- UID
- 191355
- 在线时间
- 0 小时
- 最后登录
- 2013-7-20
- 注册时间
- 2012-8-15
- 宅魂
- 371 点
- 贡献
- 96 点
- 宅币
- 5020 枚
- 灵石
- 0 块
- 元气(技能点)
- 0 点
- 活跃
- 0 ℃
- 听众
- 5
- 收听
- 1
该用户从未签到
序章
- 积分
- 6226
|
发表于 2012-9-23 18:02:20
|
显示全部楼层
做出了点小东西 感谢老师指导 以下自己依照老师的框架 自己作出的
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 WindowsFormsApplication7
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("我也爱你啊");
}
private void button2_Click(object sender, EventArgs e)
{
MessageBox.Show("我真不爱你啊");
}
}
}
|
|