formconnectionserver.cs
来自「kuiMsg是一款用.net C# 开发的即时消息开源软件,适合.net即时消息」· CS 代码 · 共 35 行
CS
35 行
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace LanMsgServer
{
public partial class FormConnectionServer : Form
{
public FormConnectionServer()
{
InitializeComponent();
}
public bool IsDispose = true;
private void butCancle_Click(object sender, EventArgs e)
{
this.Close ();
}
private void butConnection_Click(object sender, EventArgs e)
{
this.IsDispose = false;
this.Close();
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?