
c#
dll@dg
是问题总有解决方案!
展开
-
C#实验课:人民币和美元兑换
代码: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 bt{原创 2015-09-10 15:34:05 · 5579 阅读 · 0 评论 -
计算机选课程序(C#实验)
效果图:关键步骤:按钮rb1和rb2要关联First_CheckChanged()函数,即按钮的事件CheckedChanged里输入First_CheckChanged。当按钮的Checked检查是就会执行First_CheckChanged()函数,实现在TextBox里面输出信息。当关联First_CheckChanged()函数时,代码里面自动添加这个函数的代码代码:using Syst原创 2015-10-09 20:42:19 · 1687 阅读 · 0 评论 -
窗体方法.cs
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Wi原创 2015-09-17 01:17:47 · 423 阅读 · 0 评论 -
用户登录界面.cs
效果图:代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using原创 2015-09-17 21:46:46 · 2030 阅读 · 0 评论 -
随机点名程序.cs
先来一睹效果图:代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;u原创 2015-09-19 21:00:35 · 1293 阅读 · 0 评论 -
timer控件
功能:实现控制数字变化过程功能效果图代码:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.T原创 2015-09-19 22:35:49 · 605 阅读 · 0 评论 -
成绩查询程序
实现功能:1 检查用户是否存在:若不存在,则输出用户不存在;若存在,则检查学号是否正确:若正确,则输出成绩,若不存在,则输出学号不正确;2 实现从文本读取用户名、学号、成绩。3 一个按钮实现查询,一个实现重新输入,一个实现退出程序本程序的三个文本:效果图:1 用户不存在2 学号不正确3查询成功代码如下:using System;using System.Collections.Generic;u原创 2015-09-20 02:26:50 · 1169 阅读 · 0 评论 -
按钮应用(剪切,复制,粘贴)
效果图:滚动条的制作:1 把工具栏中拖panel到窗体里面,然后设置其属性AutoScroll=true;2 把工具栏中的TextBox拖到panel中,要实现多行设置其属性Multiline=true3 右边的功能看下面代码:using System;using System.Collections.Generic;using System.ComponentModel;using Syst原创 2015-09-21 20:05:17 · 604 阅读 · 0 评论 -
点名神器
点名神器安装包:链接: http://pan.baidu.com/s/1gdk5mqJ 密码: myf3效果图:代码:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using原创 2015-09-22 18:29:00 · 870 阅读 · 0 评论