目录一、需求二、新建 C# 项目三、MySQL数据库四、MySqlHelper五、测试总结一、需求C# 使用 MySQL 数据库的情况还是比较少的,大部分使用 Windows 平台一般使用 SQL Server,在两年前我买过100元一年的学生服务器,当时也是买着玩的,装 MySQL 数据库使用起来就非常卡,也不知道为什么,但 SQL Server 操作起来
......
317
0
0
2023-07-19
目录实践过程效果代码实践过程效果代码public partial class Form : Form
{
public Form()
{
InitializeComponent();
}
Russia MyRussia = new Russia();//实例化Russia类,用于操作游戏
......
418
0
0
2023-07-16
目录实践过程效果代码实践过程效果代码/**
* https://zhima.blog.csdn.net/
*/
public partial class Form : Form
{
public Form()
{
InitializeComponent();
}
private Panel pl;//记录选中的控件ID
......
306
0
0
2023-07-15
目录实践过程效果代码实践过程效果代码public partial class Form : Form
{
public Form()
{
InitializeComponent();
}
public static bool ifStart = false;//判断是否开始
publi
......
308
0
0
2023-07-15
目录什么是SignalRSignalR做了什么封装与集成SignalR用途官方网址和源码示例截图服务端项目创建SignalR服务端业务集成SignalR服务端配置客户端项目创建客户端业务逻辑处理SignalR需要注意事项关于源码在实际业务中,当后台数据发生变化,客户端能够实时的收到通知,而不是由用户主动的进行页面刷新才能查看,这将是一个非常人性化的设计。有没
......
357
0
0
2023-07-15
目录实践过程效果代码实践过程效果代码public partial class Frm_Libretto : Form
{
public Frm_Libretto()
{
InitializeComponent();
}
#region 公共变量
FrmClass Cla_FrmCl
......
394
0
0
2023-07-14
目录实践过程效果代码实践过程效果代码public partial class Form : Form
{
public Form()
{
InitializeComponent();
}
private void Form_Load(object sender, EventArgs e)
......
320
0
0
2023-07-14
目录实践过程效果代码实践过程效果代码public partial class Form : Form
{
public Form()
{
InitializeComponent();
CheckForIllegalCrossThreadCalls = false;
}
priv
......
307
0
0
2023-07-14
目录实践过程效果代码实践过程效果代码public partial class frmEdit : Form
{
public frmEdit()
{
InitializeComponent();
}
DataBase database = new DataBase();
FrmMain
......
305
0
0
2023-07-13
目录实践过程效果代码实践过程效果代码public partial class Form : Form
{
public Form()
{
InitializeComponent();
}
#region 实例化类对象及公共变量
private Thread myThread;
......
405
0
0
2023-07-12
目录实践过程效果代码实践过程效果代码public partial class frmSend : Form
{
public frmSend()
{
InitializeComponent();
}
//对邮件内容进行编码
private static string BaseEncode(
......
260
0
0
2023-07-12
目录实践过程效果代码实践过程效果代码public partial class Form : Form
{
public Form()
{
InitializeComponent();
}
private string GetFolType()
{
int Tid = co
......
271
0
0
2023-07-11
目录实践过程效果代码实践过程效果代码public partial class frmSplit : Form
{
public frmSplit()
{
InitializeComponent();
}
#region 分割文件
/// <summary>
///
......
315
0
0
2023-07-11
目录实践过程效果代码实践过程效果代码public partial class Form : Form
{
public Form()
{
InitializeComponent();
}
#region 压缩文件及文件夹
/// <summary>
/// 递归压
......
253
0
0
2023-07-11
目录实践过程效果代码实践过程效果代码public partial class Form : Form
{
public Form()
{
InitializeComponent();
}
public Image ResourceImage;
private int ImageWidt
......
251
0
0
2023-07-09