
wdmy
Mike-duo
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c# DBHelper类编写
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.SqlClient; using System.Windows.Forms; namespace scut2015 { public class DBHelper { ...原创 2019-03-16 14:31:49 · 589 阅读 · 0 评论 -
program配置修改,增加异常分析
static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); try { DBHelper.conn...原创 2019-03-16 14:32:44 · 304 阅读 · 0 评论 -
c#控件操作
1.radiobox: radio按钮!!! (1)对每个按钮都要单独做一个事件,用switch函数 (2)要在这个类里面声明一个代表这个radio变量的对象 例如: string sex; private void rdbtnM_CheckedChanged(object sender, EventArgs e) { if (!...原创 2019-03-16 14:35:20 · 327 阅读 · 0 评论 -
登录界面
private void btnLogin_Click(object sender, EventArgs e) { if (txtName.Text == "PJ" && txtPwdP.Text == "123") { FormMain fm = new FormMain(); ...原创 2019-03-16 14:36:14 · 207 阅读 · 0 评论