-
大小: 257KB文件類型: .rar金幣: 2下載: 0 次發(fā)布日期: 2021-06-05
- 語言: C#
- 標(biāo)簽:
資源簡介
C#.net實(shí)現(xiàn)學(xué)生成績管理系統(tǒng)
namespace 學(xué)生成績管理系統(tǒng)
{
partial class Formlogin
{
///
/// 必需的設(shè)計(jì)器變量。
///
private System.ComponentModel.IContainer components = null;
///
/// 清理所有正在使用的資源。
///
/// 如果應(yīng)釋放托管資源,為 true;否則為 false。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗體設(shè)計(jì)器生成的代碼
///
/// 設(shè)計(jì)器支持所需的方法 - 不要
/// 使用代碼編輯器修改此方法的內(nèi)容。
///
private void InitializeComponent()
{
this.labeluser = new System.Windows.Forms.Label();
this.textBoxuser = new System.Windows.Forms.TextBox();
this.labelcode = new System.Windows.Forms.Label();
this.textBoxcode = new System.Windows.Forms.TextBox();
this.buttonin = new System.Windows.Forms.Button();
this.buttonout = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// labeluser
//
this.labeluser.Font = new System.Drawing.Font("宋體", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.labeluser.Location = new System.Drawing.Point(31, 50);
this.labeluser.Name = "labeluser";
this.labeluser.Size = new System.Drawing.Size(55, 26);
this.labeluser.TabIndex = 0;
this.labeluser.Text = "用戶名";
this.labeluser.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// textBoxuser
//
this.textBoxuser.Location = new System.Drawing.Point(126, 55);
this.textBoxuser.Name = "textBoxuser";
this.textBoxuser.Size = new System.Drawing.S

代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Text;
using?System.Data.SqlClient;
using?System.Windows.Forms;
namespace?學(xué)生成績管理系統(tǒng)
{
????public?partial?class?Formlogin?:?Form
????{
????????public?Formlogin()
????????{
????????????InitializeComponent();
????????}
????????private?void?buttonout_Click(object?sender?EventArgs?e)
????????{
????????????Application.Exit();
????????}
????????private?void?buttonin_Click(object?sender?EventArgs?e)
????????{
????????????if?(this.textBoxcode.Text?==?string.Empty?&&?this.textBoxuser.Text?==?string.Empty)
????????????{
????????????????MessageBox.Show(“用戶名和密碼不能為空!“?“提示“);
????????????????return;
????????????}
????????????if?(this.textBoxuser.Text?==?string.Empty)
????????????{
????????????????MessageBox.Show(“用戶名不能為空!““提示“);
????????????????this.textBoxcode.Text?=?““;
????????????????return;
????????????}
????????????if?(this.textBoxcode?.Text==?string.Empty)
????????????{
????????????????MessageBox.Show(“密碼不能為空!“?“提示“);
????????????????return;
????????????}
????????????DataTable?dt?=?登陸.login.loginto(this.textBoxuser.Text.Trim()this.textBoxcode.Text.Trim());
????????????if?(dt?!=?null?&&?dt.Rows.Count?>?0)
????????????{
????????????????Formchoice?f2?=?new?Formchoice();
????????????????f2.Show();
????????????????this.Hide();
????????????}
????????????else
????????????{
????????????????MessageBox.Show(“您輸入的用戶名或密碼不正確!““提示“);
????????????????this.textBoxcode.Text?=?““;
????????????????this.textBoxuser.Text?=?““;
????????????}
????????}
????}
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件????????961??2009-05-21?19:03??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng).sln
????..A..H.?????44032??2009-09-18?15:02??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng).suo
?????文件???????6791??2009-05-24?21:12??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\學(xué)生成績管理系統(tǒng).csproj
?????文件???????1771??2009-05-23?11:18??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Form1.cs
?????文件???????1288??2009-05-23?17:02??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Form2.cs
?????文件???????6564??2009-05-23?17:02??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Form2.Designer.cs
?????文件???????5814??2009-05-23?17:02??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Form2.resx
?????文件????????487??2009-05-21?21:15??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Program.cs
?????文件???????5313??2009-05-22?20:00??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Form1.Designer.cs
?????文件???????5814??2009-05-22?20:00??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Form1.resx
?????文件????????906??2009-05-22?20:57??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\app.config
?????文件???????1220??2009-05-21?19:03??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Properties\AssemblyInfo.cs
?????文件???????1620??2009-05-24?20:57??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Properties\Settings.Designer.cs
?????文件????????486??2009-05-22?20:57??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Properties\Settings.settings
?????文件???????3370??2009-05-24?20:57??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Properties\Resources.Designer.cs
?????文件???????6437??2009-05-22?21:47??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Properties\Resources.resx
?????文件??????23324??2009-05-22?21:47??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Resources\del3.png
?????文件??????22593??2009-05-22?21:47??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\Resources\update.png
?????文件???????5632??2005-12-08?14:51??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\bin\Debug\學(xué)生成績管理系統(tǒng).vshost.exe
?????文件????????906??2009-05-22?20:57??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\bin\Debug\學(xué)生成績管理系統(tǒng).vshost.exe.config
?????文件???????1550??2009-09-18?14:51??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\bin\Debug\學(xué)生成績管理系統(tǒng).vshost.application
?????文件???????2604??2009-09-18?14:51??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\bin\Debug\學(xué)生成績管理系統(tǒng).vshost.exe.manifest
?????文件????????906??2009-05-22?20:57??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\bin\Debug\學(xué)生成績管理系統(tǒng).exe.config
?????文件???????2604??2009-09-18?14:51??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\bin\Debug\學(xué)生成績管理系統(tǒng).exe.manifest
?????文件???????1550??2009-09-18?14:51??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\bin\Debug\學(xué)生成績管理系統(tǒng).application
?????文件??????53248??2009-09-18?14:51??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\bin\Debug\學(xué)生成績管理系統(tǒng).exe
?????文件??????81408??2009-09-18?14:51??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\bin\Debug\學(xué)生成績管理系統(tǒng).pdb
?????文件???????3868??2009-09-18?15:00??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\obj\學(xué)生成績管理系統(tǒng).csproj.FileListAbsolute.txt
?????文件???????5120??2009-05-24?21:10??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
?????文件????????180??2009-09-18?14:51??學(xué)生成績管理系統(tǒng)(C#)\學(xué)生成績管理系統(tǒng)\obj\Debug\學(xué)生成績管理系統(tǒng).Formlogin.resources
............此處省略50個(gè)文件信息
評(píng)論
共有 條評(píng)論