old_flsystem/FLSystem/Forms/ServerClientManage.cs

35 lines
644 B
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using UI.Framework.Forms;
namespace FLSystem.Forms
{
internal partial class ServerClientManage : BaseForm
{
public ServerClientManage()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
try
{
}
catch (Exception)
{
throw;
}
}
}
}