5.C#WinForm基礎登陸失敗三次退出系統

來源:互聯網
上載者:User

標籤:winform   style   blog   http   color   使用   os   io   

目標:

          登陸介面,登陸錯誤三次退出程式。假設使用者名稱密碼是admin、888888,
不區分大小寫,(易錯點:局部變數與類變數)

       局部變數每次運行完畢變數的值都會被銷毀,下次再運行,會重新初始化。
       而類欄位,只要是一個對象,那麼只要對象不銷毀,就會一直保持對象的欄位值。


     退出程式:this.close();或者Application.Exit();   

     文字框的集線模式:Mutiline(多行)、PasswordChar(密碼)

     string Datatime().ToString()(+3重載)
     將當前System.DataTime對象的值轉換為其有效字串表示形式

源碼如下:

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace 登陸錯誤三次程式退出{    public partial class Form1 : Form    {        private int ErrorTimes = 0;        public Form1()        {            InitializeComponent();        }        private void button1_Click(object sender, EventArgs e)        {            string username = textBox1.Text;            string password = textBox2.Text;                       if (username.Equals("admin", StringComparison.OrdinalIgnoreCase) && password == "888888")            {                MessageBox.Show("登陸成功!");            }            else             {                /*錯誤方法                 *******************************                     int TimeErrors = 0;                 TimeErrors++;                 if (TimeErrors>= 3)                 {                     MessageBox.Show("錯誤次數過多,程式即將退出!");                     Application.Exit();                 }                 **********************************/                /*************************************                 * 局部變數每次運行完畢變數的值都會被銷毀,下次再運行,會重新初始化。                 * 而類欄位,只要是一個對象,那麼只要對象不銷毀,就會一直保持對象的欄位值。                  * ************************************/                ErrorTimes++;                if (ErrorTimes >= 3)                {                    MessageBox.Show("錯誤次數過多,程式即將退出!");                    Application.Exit();//退出程式需使用:this.close();或者Application.Exit();                }                MessageBox.Show("帳號或密碼不正確,登陸失敗!");            }        }        private void button2_Click(object sender, EventArgs e)        {            /*string Datatime().ToString()(+3重載)             * 將當前System.DataTime對象的值轉換為其有效字串表示形式             */            textBox3.AppendText(DateTime.Now.ToString() + "\n");           /*            * textBox3.Text = textBox3.Text + DateTime.Now.ToString() + "\n";            * 雖然也可以用這種,但不推薦用這種.            */        }    }}

程式運行:

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.