using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace WindowsApplication3
{
 /// <summary>
 /// Form1 的摘要说明。
 /// </summary>
 public class Form1 : System.Windows.Forms.Form
 {
  private System.Windows.Forms.Label label1;
  private System.Windows.Forms.Label label2;
  private System.Windows.Forms.Label label3;
  private System.Windows.Forms.TextBox textBox1;
  private System.Windows.Forms.TextBox textBox2;
  private System.Windows.Forms.Button button1;
  private System.Windows.Forms.Timer timer1;
  private System.ComponentModel.IContainer components;
  private System.Windows.Forms.GroupBox groupBox1;
  private System.Windows.Forms.RadioButton radioButton1;
  private System.Windows.Forms.RadioButton radioButton2;
  private System.Windows.Forms.RadioButton radioButton3;
  private System.Windows.Forms.CheckBox checkBox1;
  private System.Windows.Forms.CheckBox checkBox2;
  private System.Windows.Forms.CheckBox checkBox3;
  private int count;
  public Form1()
  {
   //
   // Windows 窗体设计器支持所必需的
   //
   InitializeComponent();
   //
   // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
   //
   count=0;
   timer1.Enabled=true;
}
  /// <summary>
  /// 清理所有正在使用的资源。
  /// </summary>
  protected override void Dispose( bool disposing )
  {
   if( disposing )
   {
    if (components != null) 
    {
     components.Dispose();
    }
   }
   base.Dispose( disposing );
  }
  #region Windows 窗体设计器生成的代码
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {
   this.components = new System.ComponentModel.Container();
   this.label1 = new System.Windows.Forms.Label();
   this.label2 = new System.Windows.Forms.Label();
   this.label3 = new System.Windows.Forms.Label();
   this.textBox1 = new System.Windows.Forms.TextBox();
   this.textBox2 = new System.Windows.Forms.TextBox();
   this.button1 = new System.Windows.Forms.Button();
   this.timer1 = new System.Windows.Forms.Timer(this.components);
   this.groupBox1 = new System.Windows.Forms.GroupBox();
   this.radioButton1 = new System.Windows.Forms.RadioButton();
   this.radioButton2 = new System.Windows.Forms.RadioButton();
   this.radioButton3 = new System.Windows.Forms.RadioButton();
   this.checkBox1 = new System.Windows.Forms.CheckBox();
   this.checkBox2 = new System.Windows.Forms.CheckBox();
   this.checkBox3 = new System.Windows.Forms.CheckBox();
   this.groupBox1.SuspendLayout();
   this.SuspendLayout();
   // 
   // label1
   // 
   this.label1.Location = new System.Drawing.Point(56, 48);
   this.label1.Name = "label1";
   this.label1.Size = new System.Drawing.Size(176, 23);
   this.label1.TabIndex = 0;
   this.label1.Text = "请输入您的用户名跟密码";
   // 
   // label2
   // 
   this.label2.Location = new System.Drawing.Point(24, 96);
   this.label2.Name = "label2";
   this.label2.Size = new System.Drawing.Size(48, 23);
   this.label2.TabIndex = 1;
   this.label2.Text = "用户名";
   // 
   // label3
   // 
   this.label3.Location = new System.Drawing.Point(24, 128);
   this.label3.Name = "label3";
   this.label3.Size = new System.Drawing.Size(32, 23);
   this.label3.TabIndex = 2;
   this.label3.Text = "密码";
   // 
   // textBox1
   // 
   this.textBox1.Location = new System.Drawing.Point(96, 96);
   this.textBox1.Name = "textBox1";
   this.textBox1.TabIndex = 3;
   this.textBox1.Text = "";
   // 
   // textBox2
   // 
   this.textBox2.Location = new System.Drawing.Point(96, 128);
   this.textBox2.Name = "textBox2";
   this.textBox2.PasswordChar = '*';
   this.textBox2.TabIndex = 4;
   this.textBox2.Text = "";
   // 
   // button1
   // 
   this.button1.Location = new System.Drawing.Point(96, 168);
   this.button1.Name = "button1";
   this.button1.TabIndex = 5;
   this.button1.Text = "确定";
   this.button1.Click += new System.EventHandler(this.button1_Click);
   // 
   // timer1
   // 
   this.timer1.Interval = 1000;
   this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
   // 
   // groupBox1
   // 
   this.groupBox1.Controls.Add(this.radioButton3);
   this.groupBox1.Controls.Add(this.radioButton2);
   this.groupBox1.Controls.Add(this.radioButton1);
   this.groupBox1.Location = new System.Drawing.Point(24, 200);
   this.groupBox1.Name = "groupBox1";
   this.groupBox1.Size = new System.Drawing.Size(72, 128);
   this.groupBox1.TabIndex = 6;
   this.groupBox1.TabStop = false;
   // 
   // radioButton1
   // 
   this.radioButton1.Location = new System.Drawing.Point(16, 24);
   this.radioButton1.Name = "radioButton1";
   this.radioButton1.TabIndex = 0;
   this.radioButton1.Text = "红色";
   this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
   // 
   // radioButton2
   // 
   this.radioButton2.Location = new System.Drawing.Point(16, 52);
   this.radioButton2.Name = "radioButton2";
   this.radioButton2.TabIndex = 1;
   this.radioButton2.Text = "绿色";
   this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
   // 
   // radioButton3
   // 
   this.radioButton3.Location = new System.Drawing.Point(16, 80);
   this.radioButton3.Name = "radioButton3";
   this.radioButton3.TabIndex = 2;
   this.radioButton3.Text = "蓝色";
   this.radioButton3.CheckedChanged += new System.EventHandler(this.radioButton3_CheckedChanged);
   // 
   // checkBox1
   // 
   this.checkBox1.Location = new System.Drawing.Point(120, 216);
   this.checkBox1.Name = "checkBox1";
   this.checkBox1.TabIndex = 7;
   this.checkBox1.Text = "粗体";
   this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
   // 
   // checkBox2
   // 
   this.checkBox2.Location = new System.Drawing.Point(120, 248);
   this.checkBox2.Name = "checkBox2";
   this.checkBox2.TabIndex = 8;
   this.checkBox2.Text = "斜体";
   this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
   // 
   // checkBox3
   // 
   this.checkBox3.Location = new System.Drawing.Point(120, 280);
   this.checkBox3.Name = "checkBox3";
   this.checkBox3.TabIndex = 9;
   this.checkBox3.Text = "下划线";
   this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
   // 
   // Form1
   // 
   this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
   this.ClientSize = new System.Drawing.Size(232, 342);
   this.Controls.Add(this.checkBox3);
   this.Controls.Add(this.checkBox2);
   this.Controls.Add(this.checkBox1);
   this.Controls.Add(this.groupBox1);
   this.Controls.Add(this.button1);
   this.Controls.Add(this.textBox2);
   this.Controls.Add(this.textBox1);
   this.Controls.Add(this.label3);
   this.Controls.Add(this.label2);
   this.Controls.Add(this.label1);
   this.Name = "Form1";
   this.Text = "Form1";
   this.groupBox1.ResumeLayout(false);
   this.ResumeLayout(false);
  }
  #endregion
  /// <summary>
  /// 应用程序的主入口点。
  /// </summary>
  [STAThread]
  static void Main() 
  {
   Application.Run(new Form1());
  }
  private void button1_Click(object sender, System.EventArgs e)
  {
   if (string.Compare(textBox1.Text,"wangjie")==0&string.Compare(textBox2.Text,"wangjie")==0)
   {
    MessageBox.Show("用户名与密码正确,欢迎您的进入");
    Application.Exit();
   }
   else MessageBox.Show("用户名或密码不正确!请重新输入!");
  }
  private void timer1_Tick(object sender, System.EventArgs e)
  {
   count++;
   if (count%3==1)
    label1.BackColor=Color.Red;
   if (count%3==2)
    label1.BackColor=Color.Green;
   if (count%3==0)
    label1.BackColor=Color.Blue;
  }
  private void radioButton1_CheckedChanged(object sender, System.EventArgs e)
  {
   label2.ForeColor=Color.Red;
   label3.ForeColor=Color.Red;
  }
  private void radioButton2_CheckedChanged(object sender, System.EventArgs e)
  {
   label2.ForeColor=Color.Green;
   label3.ForeColor=Color.Green;
  
  }
  private void radioButton3_CheckedChanged(object sender, System.EventArgs e)
  {
   label2.ForeColor=Color.Blue;
   label3.ForeColor=Color.Blue;
  }
  private void checkBox1_CheckedChanged(object sender, System.EventArgs e)
  {
   if (checkBox1.Checked)
   {
    label2.Font=new Font(label2.Font,FontStyle.Bold|label2.Font.Style);
    label3.Font=new Font(label3.Font,FontStyle.Bold|label2.Font.Style);
   }
   else
   {
    label2.Font=new Font(label2.Font,FontStyle.Bold^label2.Font.Style);
    label3.Font=new Font(label3.Font,FontStyle.Bold^label3.Font.Style);
   }
  }
  private void checkBox2_CheckedChanged(object sender, System.EventArgs e)
  {
   if (checkBox2.Checked)
   {
    label2.Font=new Font(label2.Font,FontStyle.Italic|label2.Font.Style);
    label3.Font=new Font(label3.Font,FontStyle.Italic|label3.Font.Style);
   }
   else
   {
    label2.Font=new Font(label2.Font,FontStyle.Italic^label2.Font.Style);
    label3.Font=new Font(label3.Font,FontStyle.Italic^label3.Font.Style);
   }
  }
  private void checkBox3_CheckedChanged(object sender, System.EventArgs e)
  {
   if (checkBox2.Checked)
   {
    label2.Font=new Font(label2.Font,FontStyle.Underline|label2.Font.Style);
    label3.Font=new Font(label3.Font,FontStyle.Underline|label3.Font.Style);
   }
   else
   {
    label2.Font=new Font(label2.Font,FontStyle.Underline^label2.Font.Style);
    label3.Font=new Font(label3.Font,FontStyle.Underline^label3.Font.Style);
   }
  }
  
 }
}



											
	    

	