information.cs
来自「这是一个C#写的QQ聊天工具,大家可以看看怎么样,发表一个意见」· CS 代码 · 共 30 行
CS
30 行
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace SQ
{
public partial class Information : Form
{
public Information()
{
InitializeComponent();
}
private void button4_Click(object sender, EventArgs e)
{
this.panel1.Visible = true;
this.panel3.Visible = false;
}
private void button5_Click(object sender, EventArgs e)
{
this.panel1.Visible = false;
this.panel3.Visible = true;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?