| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 862 人关注过本帖
标题:C#编写登陆窗体
只看楼主 加入收藏
zala77
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2008-6-12
收藏
 问题点数:0 回复次数:3 
C#编写登陆窗体
要实现教师,管理员,学生登陆··········救救我···我是初学者··
搜索更多相关主题的帖子: 窗体 编写 登陆 管理员 
2008-07-01 09:38
Jacky_Athena
Rank: 1
等 级:新手上路
帖 子:20
专家分:0
注 册:2008-4-7
收藏
得分:0 
FormLogin.cs//登录窗体
(参考)
C# code
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace SnKsxs//你的名字,呵呵
{
    public partial class FormLogin : Form
    {
        public FormLogin()
        {
            InitializeComponent();
        }

        private void btnLogin_Click(object sender, EventArgs e)
        {
            if (txtUserName.Text=="aaa"&txtPassword.Text=="bbb")//举例的,没有使用数据库
            {
                ValueClass.LoginUserName = txtUserName.Text;
                this.DialogResult = DialogResult.OK;
            }
            else
            {
                MessageBox.Show("用户名或密码错误!", "出错啦~~", MessageBoxButtons.OK, MessageBoxIcon.Information);
                txtPassword.Focus();
                return;
            }
            return;
        }

        private void btnCancel_Click(object sender, EventArgs e)
        {
            Application.ExitThread();
        }
    }
}



FormMain.cs//程序主窗体
C# code
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace SnKsxs
{
    public partial class FormMain : Form
    {
        public FormMain()
        {
            InitializeComponent();
        }

        private void FormMain_Load(object sender, EventArgs e)
        {
            label1.Text = ValueClass.LoginUserName;
        }
    }
}



Program.cs
C# code
using System;
using System.Collections.Generic;
using System.Windows.Forms;

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



ValueClass.cs//用于传值
C# code
using System;
using System.Collections.Generic;
using System.Text;

namespace SnKsxs
{
    class ValueClass
    {
        public static string LoginUserName = string.Empty;
    }
}
2008-07-01 09:41
tomtory
Rank: 1
来 自:重庆
等 级:新手上路
帖 子:705
专家分:0
注 册:2008-6-12
收藏
得分:0 
放一个下拉文本框
在里面选择登陆方式
在根据选择的登陆方式来判断是什么登陆啊
2008-07-01 09:51
fxf568
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2008-2-28
收藏
得分:0 
根据输入的用户名,判断数据哭中的权限设置就可以了啊
2008-07-01 11:05
快速回复:C#编写登陆窗体
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023686 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved