📄 form1.cs
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace xlsb
{
public partial class main : Form
{
public static main pMainWin = null;
public static string servername, saname, pass, dbname;//设置服务器名,数据库用户名,密码,数据库名
public main()
{
InitializeComponent();
pMainWin = this;
}
private void 销售开票ToolStripMenuItem_Click(object sender, EventArgs e)
{
xskdForm newxsd=new xskdForm();
newxsd.Show();
}
private void toolStripStatusLabel1_Click(object sender, EventArgs e)
{
}
private void toolStripButton3_Click(object sender, EventArgs e)
{
login.ActiveForm.Show();//返回登陆窗口
this.Close();
}
private void toolStripButton2_Click(object sender, EventArgs e)
{
xskdForm newxsd = new xskdForm();
newxsd.Show();
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -