111,128
社区成员
发帖
与我相关
我的任务
分享
if (RegManage.CheckState())//验证注册信息
{
Application.Run(new Main());
}
else
{
Registor re = new Registor();
if(re.ShowDialog ()== DialogResult.OK)
{
Application.Run(new Main());
}
}
public class RegManage
{
public static bool CheckState()
{
}
}