C# 實現簡單仿QQ登陸註冊功能

来源:https://www.cnblogs.com/chaocoder/archive/2018/05/31/9117311.html
-Advertisement-
Play Games

閑來沒事,想做一個仿QQ登陸註冊的winform,於是利用工作之餘,根據自己的掌握和查閱的資料,歷時4天修改完成,新手水平,希望和大家共同學習進步,有不同見解希望提出! 廢話不多說,進入正題: 先來看看我繪製的界面: 運用的CSkin控制項完成的繪製,cskin和vs自帶的控制項其實差別不大,只是csk ...


閑來沒事,想做一個仿QQ登陸註冊的winform,於是利用工作之餘,根據自己的掌握和查閱的資料,歷時4天修改完成,新手水平,希望和大家共同學習進步,有不同見解希望提出!

廢話不多說,進入正題:

先來看看我繪製的界面:

運用的CSkin控制項完成的繪製,cskin和vs自帶的控制項其實差別不大,只是cskin美化更好一點,此外,cskin的驗證碼控制項(skincode)很不錯

再來看看代碼:

public partial class Login : CCSkinMain
    {
        
        public Login()
        {
            InitializeComponent();
            //ControlBox = false;
            //取消最大化
            MaximizeBox = false;
            panel1.Visible = false;
                    
            txtName.SkinTxt.TextChanged += SkinTxt_TextChanged;

            connectString = @"Data Source=E:\Works\Visual Studio 2017\Projects\SuiBianWanWan\SuiBianWanWan\bin\Debug\suibianwanwan.db;Pooling=true;FailIfMissing=false";
            conn = new SQLiteConnection(connectString);
            conn.Open();
        }

        private void SkinTxt_TextChanged(object sender, EventArgs e)
        {
            txtPassWord.Text = "";
            skinCheckBox1.Checked = false;
            skinCheckBox2.Checked = false;
        }

        string connectString = null;
        SQLiteConnection conn = null;

        //獲取Configuration對象
        //這裡得到的是exe.config文件的內容,不是app.config
        Configuration config = ConfigurationManager.OpenExeConfiguration(Application.ExecutablePath);
        string name = "";
        string passWord = "";
        string sign1 = "";
        string sign2 = "";
        string pic = "";
        
        //根據進行的設置更新config保存的數據
        public void AccessAppSetting(string name,string passsWord,string sign1,string sign2,string pic)
        {
            //刪除<add>元素
            config.AppSettings.Settings.Remove("name");
            config.AppSettings.Settings.Remove("passWord");
            config.AppSettings.Settings.Remove("sign1");
            config.AppSettings.Settings.Remove("sign2");
            config.AppSettings.Settings.Remove("pic");
            //增加<add>元素
            config.AppSettings.Settings.Add("name", name);
            config.AppSettings.Settings.Add("passWord", passsWord);
            config.AppSettings.Settings.Add("sign1",sign1);
            config.AppSettings.Settings.Add("sign2", sign2);
            config.AppSettings.Settings.Add("pic", pic);
            //一定要記得保存,寫不帶參數的config.save()也可以
            config.Save(ConfigurationSaveMode.Modified);
            //刷新,否則程式讀取的還是之前的值(可能已經裝進記憶體)
            ConfigurationManager.RefreshSection("appSettings");

        }

        //密碼加密
        public string getMD5(string s)
        {
            MD5 mD5 = MD5.Create();
            byte[] buffer = Encoding.GetEncoding("gbk").GetBytes(s);
            byte[] Md5Buffer = mD5.ComputeHash(buffer);
            string str = "";
            for (int i = 0; i < Md5Buffer.Length; i++)
            {
                str = str + Md5Buffer[i].ToString();
            }
            return str;
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            //重繪頭像框 變圓形 picturebox
            GraphicsPath gp = new GraphicsPath();
            gp.AddEllipse(skinPictureBox1.ClientRectangle);
            Region region = new Region(gp);
            skinPictureBox1.Region = region;
            gp.Dispose();
            region.Dispose();

            name = config.AppSettings.Settings["name"].Value;
            passWord = config.AppSettings.Settings["passWord"].Value;
            sign1 = config.AppSettings.Settings["sign1"].Value;
            sign2 = config.AppSettings.Settings["sign2"].Value;
            pic = config.AppSettings.Settings["pic"].Value;
            if (!string.IsNullOrEmpty(name))
            {
                txtName.Text = name;
                txtPassWord.Text = passWord;
                skinPictureBox1.ImageLocation = pic;
                skinCheckBox1.Checked = sign1.Trim() == "1" ? true : false;
                skinCheckBox2.Checked = sign2.Trim() == "2" ? true : false;
            }
            
            if (skinCheckBox1.Checked)
                btnLogin_Click(null,null);
        }

        private void btnLogin_Click(object sender, EventArgs e)
        {
            //登錄驗證
            SQLiteCommand cmd = new SQLiteCommand();
            cmd.Connection = conn;
            cmd.CommandText = "select * from userMessage where username =" + txtName.Text;
            try
            {
                SQLiteDataReader dr = cmd.ExecuteReader();
                DataTable dt = new DataTable();
                dt.Load(dr);
                string username = dt.Rows[0]["username"].ToString();
                string password = dt.Rows[0]["password"].ToString();

                if (string.IsNullOrEmpty(txtName.Text))
                {
                    skinLabel6.Visible = true;
                }
                else if (string.IsNullOrEmpty(txtPassWord.Text))
                {
                    skinLabel7.Visible = true;
                }
                else
                {
                    if (skinCheckBox2.Checked && sign2 == "")
                    {
                        if (getMD5(txtPassWord.Text) == password)
                        {
                            MessageBoxEx.Show("登陸成功");
                            if(skinCheckBox1.Checked)
                                AccessAppSetting(txtName.Text, getMD5(txtPassWord.Text), "1", "2", skinPictureBox1.ImageLocation);
                            else
                                AccessAppSetting(txtName.Text, getMD5(txtPassWord.Text), "", "2", skinPictureBox1.ImageLocation);
                        }
                        else
                            MessageBoxEx.Show("用戶名或密碼錯誤,請重新登陸");
                    }
                    else if (!skinCheckBox2.Checked && sign2 == "")
                    {
                        if(getMD5(txtPassWord.Text) == password)
                        {
                            MessageBoxEx.Show("登陸成功");
                            AccessAppSetting(txtName.Text, "", "", "", skinPictureBox1.ImageLocation);
                        }
                        else
                            MessageBoxEx.Show("用戶名或密碼錯誤,請重新登陸");
                    }
                    else if(sign2 != "" && skinCheckBox2.Checked)
                    {
                        if(txtName.Text == name && txtPassWord.Text == password)
                        {
                            MessageBoxEx.Show("登陸成功");
                            if(skinCheckBox1.Checked)
                                AccessAppSetting(txtName.Text, txtPassWord.Text, "1", "2", skinPictureBox1.ImageLocation);
                            else
                                AccessAppSetting(txtName.Text, txtPassWord.Text, "", "2", skinPictureBox1.ImageLocation);
                        }
                        else if(txtName.Text != name && getMD5(txtPassWord.Text) == password)
                        {
                            MessageBoxEx.Show("登陸成功");
                            if(skinCheckBox1.Checked)
                                AccessAppSetting(txtName.Text, getMD5(txtPassWord.Text), "1", "2", skinPictureBox1.ImageLocation);
                            else
                                AccessAppSetting(txtName.Text, getMD5(txtPassWord.Text), "", "2", skinPictureBox1.ImageLocation);
                        }
                        else
                            MessageBoxEx.Show("用戶名或密碼錯誤,請重新登陸");
                    }
                    else if (sign2 != "" && !skinCheckBox2.Checked)
                    {
                        if (txtName.Text == name && txtPassWord.Text == password)
                        {
                            MessageBoxEx.Show("登陸成功");
                            AccessAppSetting(txtName.Text, "", "", "", skinPictureBox1.ImageLocation);
                        }
                        else if (txtName.Text != name && getMD5(txtPassWord.Text) == password)
                        {
                            MessageBoxEx.Show("登陸成功");
                            AccessAppSetting(txtName.Text, "", "", "2", skinPictureBox1.ImageLocation);
                        }
                        else
                            MessageBoxEx.Show("用戶名或密碼錯誤,請重新登陸");
                    }
                }
             }
            catch (Exception)
            {
                MessageBoxEx.Show("用戶名不存在,請前往註冊");
                txtName.Text = "";
                txtPassWord.Text = "";
                skinCheckBox1.Checked = false;
                skinCheckBox2.Checked = false;
            }
            
        }

        //關於焦點的一些處理
        private void Form1_Click(object sender, EventArgs e)
        {
            panel1.Visible = false;
            if (!string.IsNullOrEmpty(txtName.Text))
            {
                skinLabel6.Visible = false;
            }
            if (!string.IsNullOrEmpty(txtPassWord.Text))
            {
                skinLabel7.Visible = false;
            }
        }
        private void txtPassWord_MouseEnter(object sender, EventArgs e)
        {
            if (!string.IsNullOrEmpty(txtName.Text))
            {
                skinLabel6.Visible = false;
            }
        }
        private void txtName_Validated(object sender, EventArgs e)
        {
            if (!string.IsNullOrEmpty(txtName.Text))
            {
                skinLabel6.Visible = false;
            }
        }
        private void txtPassWord_Validated(object sender, EventArgs e)
        {
            if (!string.IsNullOrEmpty(txtPassWord.Text))
            {
                skinLabel7.Visible = false;
            }
        }

        //自動登錄
        private void skinCheckBox1_CheckedChanged(object sender, EventArgs e)
        {
            if (skinCheckBox1.Checked==true)
            {
                skinCheckBox2.Checked = true;
            }
        }

        //線上狀態下拉實現
        private void btnState_Click(object sender, EventArgs e)
        {
            panel1.Visible = true;
        }
        private void ToolStripMenuItem0_Click(object sender, EventArgs e)
        {
            btnState.BaseColor = Color.Green;
            panel1.Visible = false;
        }
        private void toolStripMenuItem1_Click(object sender, EventArgs e)
        {
            btnState.BaseColor = Color.Red;
            panel1.Visible = false;
        }
        private void toolStripMenuItem2_Click(object sender, EventArgs e)
        {
            btnState.BaseColor = Color.Gray;
            panel1.Visible = false;
        }

        //換頭像
        private void skinPictureBox1_Click(object sender, EventArgs e)
        {
            OpenFileDialog ofd = new OpenFileDialog();
            ofd.Title = "選擇頭像";
            ofd.Multiselect = false;
            ofd.InitialDirectory = @"E:\";
            ofd.Filter = "圖片|*.jpg";
            ofd.ShowDialog();

            string path = ofd.FileName;
            skinPictureBox1.ImageLocation = path;
        }

        //註冊頁面
        private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Regist regist = new Regist();
            Hide();
            regist.Show();
        }

        private void Login_FormClosed(object sender, FormClosedEventArgs e)
        {
            Application.Exit();
        }
    }

  

public partial class Regist : CCSkinMain
    {
        
        public Regist()
        {
            InitializeComponent();
            MaximizeBox = false;
            connectString = @"Data Source=E:\Works\Visual Studio 2017\Projects\SuiBianWanWan\SuiBianWanWan\bin\Debug\suibianwanwan.db;Pooling=true;FailIfMissing=false";
            conn = new SQLiteConnection(connectString);
            conn.Open();
        }

        string connectString = null;
        SQLiteConnection conn = null;

        //密碼加密
        public string getMD5(string s)
        {
            MD5 mD5 = MD5.Create();
            byte[] buffer = Encoding.GetEncoding("gbk").GetBytes(s);
            byte[] Md5Buffer = mD5.ComputeHash(buffer);
            string str = "";
            for (int i = 0; i < Md5Buffer.Length; i++)
            {
                str = str + Md5Buffer[i].ToString();
            }
            return str;
        }

        private void btnRegist_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtName.Text))
            {
                skinLabel6.Visible = true;
            }
            if (string.IsNullOrEmpty(txtPassWord.Text))
            {
                skinLabel4.Visible = true;
            }
            string skinCode = skinCode1.CodeStr;
            
            if (txtCheck.Text == skinCode)
            {
                MessageBoxEx.Show("恭喜你註冊成功!");
                Hide();
                Login login = new Login();
                login.Show();
            }
            else
            {
                MessageBoxEx.Show("驗證碼錯誤,請重新輸入");
            }
            try
            {
                SQLiteCommand cmd = new SQLiteCommand();
                cmd.Connection = conn;
                string password = getMD5(txtPassWord.Text);
                cmd.CommandText = "insert into userMessage values ('" + txtName.Text + "','" + password + "','" + txtPhone.Text + "')";
                cmd.ExecuteNonQuery();
            }
            catch (Exception)
            {
                MessageBoxEx.Show("用戶名已存在");
            }
            

        }

        private void txtName_Validated(object sender, EventArgs e)
        {
            if(!string.IsNullOrEmpty(txtName.Text))
                skinLabel6.Visible = false;
            else
                skinLabel6.Visible = true;
        }

        private void txtPassWord_Validated(object sender, EventArgs e)
        {
            if (!string.IsNullOrEmpty(txtPassWord.Text))
                skinLabel4.Visible = false;
            else
                skinLabel4.Visible = true;
        }

        private void txtPhone_Validated(object sender, EventArgs e)
        {
            if (!string.IsNullOrEmpty(txtPhone.Text))
                skinLabel5.Visible = false;
            else
                skinLabel5.Visible = true;
        }

        private void Regist_FormClosed(object sender, FormClosedEventArgs e)
        {
            Login login = new Login();
            login.Show();
        }
    }

  這裡說一下資料庫我用的SQLite,在此之前我也沒有用過sqlite資料庫,只知道是文件型資料庫,我也是邊學邊用,發現其實挺好用的,十分方便,我用資料庫可視化工具是SQLite Expert Personal,這裡提一下,用sqlite資料庫進行建表時,針對字元串類型最好用text類型,不要用varchar

       最後,說一下我記住密碼的方式,我用的是利用App.config 配置文件保存密碼的方式來記錄的,在winform載入的時候去讀取config配置文件,判斷是否記住了密碼

 

好了,大概就是這些吧,希望給有興趣的你提供了幫助,也歡迎大家一起探討!!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 之前的兩篇系統架構的博客中都提到了高併發、高可用技術,但是卻都沒有詳細聊過,今天就好好聊一下常見的高併發技術。 一 高併發技術核心 高併發技術的核心是分流;分別針對請求的各個環節,根據具體場景和業務特點採用不同的分流方案,逐層逐級的分擔系統壓力,從而達到高併發能力。 常見的高併發技術有:動靜分離、緩 ...
  • 一.print和import更多信息 1.使用逗號輸出 列印多個表達式,將它們用逗號隔開 2.賦值魔法 多個賦值 交換變數 鏈式賦值 增量賦值 二.條件和條件語句 1.if語句和else,elif if語句,當if後面的表達式為真時執行 a=int(input(‘input num:’)) if a ...
  • HTML:超文本標記語言(頁面中可以包含圖片、音樂、鏈接、程式等非文字元素,通過一組標簽的形式描述事物的一門語言) HTML的結構標簽:根標簽:<html>、頭標簽:<head>、體標簽:<body> HTML的字體標簽:<font> 屬性:color {字體顏色分為兩種(1)英文單詞設置:blac ...
  • 很多小步快跑的公司,開發人員多則3-4個,面對巨大業務壓力,日連夜的趕著上線,快速試錯,自然就沒時間搭建一些基礎設施,比如說logCenter,但初期 項目不穩定,bug又多,每次都跑到生產去找日誌,確實也不大方便,用elk或者用hadoop做日誌中心,雖然都是沒問題的,但基於成本和人手還是怎麼簡化 ...
  • 分享一篇文章,關於asp.net core中httpcontext的拓展。 現在,試圖圍繞HttpContext.Current構建你的代碼真的不是一個好主意,但是我想如果你正在遷移一個企業類型的應用程式,那麼很多HttpContext.Current會圍繞這個業務邏輯,它可能會提供一些暫時的緩解移 ...
  • 介紹一種取下拉框值以及綁定下拉框數據的方法 這裡用到的jquery-ui-multiselect插件 1、前臺html代碼 2、獲取值js代碼 3、後臺取值賦值代碼 //品類 if (hid_Cartype.Value == "") //將文本值放入lable控制項顯示 x_lb_Cartype.Vi ...
  • 只作為個人學習筆記。 ...
  • 索引 NET Core應用框架之BitAdminCore框架應用篇系列 框架演示:http://bit.bitdao.cn 框架源碼:https://github.com/chenyinxin/cookiecutter-bitadmin-core 20180531更新內容 本次更新內容如下: 一、將 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...