91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用VS2012怎么實現一個登錄界面

發布時間:2021-05-27 16:59:11 來源:億速云 閱讀:150 作者:Leah 欄目:開發技術

本篇文章為大家展示了使用VS2012怎么實現一個登錄界面,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace 登錄x
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }

    private void userInfoBindingNavigatorSaveItem_Click(object sender, EventArgs e)
    {
      this.Validate();
      this.userInfoBindingSource.EndEdit();
      this.tableAdapterManager.UpdateAll(this.studentRecordDataSet);

    }

    private void Form1_Load(object sender, EventArgs e)
    {
      // TODO: 這行代碼將數據加載到表“studentRecordDataSet1.UserInfo”中。您可以根據需要移動或刪除它。
      this.userInfoTableAdapter1.Fill(this.studentRecordDataSet1.UserInfo);
      // TODO: 這行代碼將數據加載到表“studentRecordDataSet.UserInfo”中。您可以根據需要移動或刪除它。
      this.userInfoTableAdapter.Fill(this.studentRecordDataSet.UserInfo);

    }

    private void passwordLabel_Click(object sender, EventArgs e)
    {

    }

    private void button1_Click(object sender, EventArgs e)
    {
      string connString = @"Data Source=.;Initial Catalog=studentrecord;Integrated Security=True";
      SqlConnection conn = new SqlConnection(connString);
      string sql = "select count(*) from UserInfo where username='" + userNameComboBox.Text + "'and password='" + passwordTextBox.Text + "'";
      conn.Open();
      SqlCommand comm = new SqlCommand(sql, conn);
      int num = (int)comm.ExecuteScalar();
      if (num > 0)
      {
        Form2 frm2 = new Form2();
        frm2.Show();

      }
      else
      {
        MessageBox.Show("對不起,用戶名和密碼并不匹配!", "登陸失敗");
      }
      conn.Close();
    }

    private void userNameComboBox_SelectedIndexChanged(object sender, EventArgs e)
    {

    }

    private void passwordTextBox_TextChanged(object sender, EventArgs e)
    {

    }
  }
}

這個是第二個界面的代碼:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace 登錄x
{
  public partial class Form2 : Form
  {
    public Form2()
    {
      InitializeComponent();
    }

    private void label1_Click(object sender, EventArgs e)
    {

    }
  }
}

上述內容就是使用VS2012怎么實現一個登錄界面,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

连云港市| 尉氏县| 平顶山市| 启东市| 辽阳县| 泗洪县| 获嘉县| 平泉县| 开化县| 河北省| 金溪县| 调兵山市| 房山区| 武胜县| 平泉县| 凭祥市| 泰和县| 苗栗市| 亳州市| 昭平县| 轮台县| 朝阳市| 恩平市| 陵水| 滨海县| 常德市| 宁陵县| 綦江县| 微博| 鹤庆县| 五寨县| 昌平区| 正安县| 平远县| 芜湖县| 柏乡县| 天柱县| 长沙市| 张家港市| 屯门区| 社旗县|