Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Form1.cs
Package: VC#.NET范例.rar [view]
Upload User: chinafred
Upload Date: 2007-08-14
Package Size: 10127k
Code Size: 3k
Category:
ADO-ODBC
Development Platform:
C#
- using System;
- using System.Drawing;
- using System.Collections;
- using System.ComponentModel;
- using System.Windows.Forms;
- using System.Data;
- namespace TextLoginBox
- {
- /// <summary>
- /// Form1 的摘要说明。
- /// </summary>
- public class Form1 : System.Windows.Forms.Form
- {
- private ch9_2.loginBox loginBox1;
- private System.Windows.Forms.Label label1;
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.Container components = null;
- public Form1()
- {
- //
- // Windows 窗体设计器支持所必需的
- //
- InitializeComponent();
- //
- // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
- //
- }
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- protected override void Dispose( bool disposing )
- {
- if( disposing )
- {
- if (components != null)
- {
- components.Dispose();
- }
- }
- base.Dispose( disposing );
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.loginBox1 = new ch9_2.loginBox();
- this.label1 = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // loginBox1
- //
- this.loginBox1.Location = new System.Drawing.Point(88, 96);
- this.loginBox1.LoginText = ch9_2.LoginButtonText.登录;
- this.loginBox1.Name = "loginBox1";
- this.loginBox1.Password = "********";
- this.loginBox1.Size = new System.Drawing.Size(96, 136);
- this.loginBox1.TabIndex = 0;
- this.loginBox1.Username = "请输入用户名";
- this.loginBox1.LoginButtonClick += new System.EventHandler(this.loginBox1_LoginButtonClick);
- //
- // label1
- //
- this.label1.Location = new System.Drawing.Point(48, 40);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(176, 23);
- this.label1.TabIndex = 1;
- this.label1.Text = "LoginBox控件示例";
- this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // Form1
- //
- this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
- this.ClientSize = new System.Drawing.Size(280, 273);
- this.Controls.AddRange(new System.Windows.Forms.Control[] {
- this.label1,
- this.loginBox1});
- this.Name = "Form1";
- this.Text = "LoginBox控件示例";
- this.ResumeLayout(false);
- }
- #endregion
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.Run(new Form1());
- }
- private void loginBox1_LoginButtonClick(object sender, System.EventArgs e)
- {
- MessageBox.Show("欢迎你的访问!");
- }
- }
- }