• 登陆窗体跳转主窗体时关闭


    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Windows.Forms;

    namespace DemoRF
    {
        static class Program
        {
            /// <summary>
            /// 应用程序的主入口点。
            /// </summary>
            [STAThread]
            static void Main()
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                frmLogin login = new frmLogin();
                login.ShowDialog();
                if (login.DialogResult == DialogResult.OK)
                {
                    Application.Run(new frmMain());
                }
                //Application.Run(new Form2());
            }
        }
    }

  • 相关阅读:
    背景图片填充问题
    a:hover 等伪类选择器
    jQuery中animate()方法用法实例
    响应式框架Bootstrap
    HTTP入门
    jQuery选择器
    httplib urllib urllib2 pycurl 比较
    校招
    JAVA描述的简单ORM框架
    Roman to Integer
  • 原文地址:https://www.cnblogs.com/Iyce/p/2738766.html
Copyright © 2020-2023  润新知