📄 mainform.cs
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using smsForCsharp;
namespace dxsf
{
public partial class mainform : Form
{
public mainform()
{
InitializeComponent();
}
private void MenuItem11_Click(object sender, EventArgs e)
{
Form1 x = new Form1();
// this.Hide();
x.Show();
}
private void MenuItem3_Click(object sender, EventArgs e)
{
if (MessageBox.Show("你要退出吗", "提示:", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
Application.Exit();
}
else
{
return;
}
}
private void MenuItem12_Click(object sender, EventArgs e)
{
oll_fxinxi x_oll_fxinxi = new oll_fxinxi();
// this.Hide();
Form1 xx = new Form1();
xx.Dispose();
xx.Close();
x_oll_fxinxi.Show();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -