示例#1
0
文件: MenuGui.cs 项目: tuandatt/DoAn
        public void THhs()
        {
            Console.ForegroundColor = ConsoleColor.Green;
            Console.SetCursorPosition(38, 03); Console.WriteLine(" █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█");
            Console.ForegroundColor = ConsoleColor.DarkRed;
            Console.SetCursorPosition(38, 04); Console.WriteLine(" █                                                 █");
            Console.ForegroundColor = ConsoleColor.Magenta;
            Console.SetCursorPosition(38, 05); Console.WriteLine(" █    ❶ 1.Nhập thông tin học sinh                  █");
            Console.ForegroundColor = ConsoleColor.Yellow;
            Console.SetCursorPosition(38, 06); Console.WriteLine(" █    ❷ 2.Nhập điểm của học sinh                   █");
            Console.ForegroundColor = ConsoleColor.DarkYellow;
            Console.SetCursorPosition(38, 07); Console.WriteLine(" █    ❸ 3.Tìm học sin                              █");
            Console.ForegroundColor = ConsoleColor.Red;
            Console.SetCursorPosition(38, 08); Console.WriteLine(" █    ❹ 4.Sửa học sinh                             █");
            Console.ForegroundColor = ConsoleColor.DarkGreen;
            Console.SetCursorPosition(38, 09); Console.WriteLine(" █    ❺ 5.Xóa thông tin học sinh                   █");
            Console.ForegroundColor = ConsoleColor.DarkCyan;
            Console.SetCursorPosition(38, 10); Console.WriteLine(" █    ❻ 6.Hiển thị thông tin học sinh              █");
            Console.ForegroundColor = ConsoleColor.Cyan;
            Console.SetCursorPosition(38, 11); Console.WriteLine(" █    ❼ 7.Hiển thị thông tin điểm của học sinh     █");
            Console.ForegroundColor = ConsoleColor.DarkRed;
            Console.SetCursorPosition(38, 12); Console.WriteLine(" █    ❽ 8.Exit                                     █");
            Console.ForegroundColor = ConsoleColor.Yellow;
            Console.SetCursorPosition(38, 13); Console.WriteLine(" █                                                 █");
            Console.ForegroundColor = ConsoleColor.White;
            Console.SetCursorPosition(38, 14); Console.WriteLine("●▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀● ");
            QLHS   ql  = new QLHS();
            diemtp dtp = new diemtp();
            int    i   = int.Parse(Console.ReadLine());

            switch (i)
            {
            case 1:
                Console.Clear();
                ql.NhapHS();
                break;

            case 2:
                Console.Clear();
                dtp.nhapdiem();
                break;

            case 6:
                Console.Clear();
                ql.HienHS();
                break;

            case 8:
                Console.Clear();
                mn.MenuChinh();
                break;
            }
        }
示例#2
0
        public void barButtonItemQLHocSinh_ItemClick(object sender, ItemClickEventArgs e)
        {
            QLHS qLHS = new QLHS();

            qLHS.TopLevel = false;
            panelMain.Controls.Clear();
            panelMain.Dock = DockStyle.Fill;
            panelMain.Controls.Add(qLHS);
            qLHS.Dock            = DockStyle.Fill;
            qLHS.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            qLHS.Show();
        }
示例#3
0
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     qLHS        = new QLHS();
     lg          = new frmLogin();
     quanLyChung = new QuanLyChung();
     hocSinhSql  = new HocSinhSql();
     hs          = new HocSinh();
     giaoVienSql = new GiaoVienSql();
     gv          = new GiaoVien();
     qLGV        = new QLGV();
     giangDay    = new GiangDay();
     giangDaySql = new GiangDaySql();
     lop         = new Lop();
     lopSql      = new LopSql();
     diem        = new Diem();
     diemSql     = new DiemSql();
     userSql     = new UserSql();
     Application.Run(lg);
 }
示例#4
0
        private void button1_Click(object sender, EventArgs e)
        {
            QLHS ql = new QLHS();

            ql.ShowDialog();
        }