| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 4957 人关注过本帖
标题:groupbox、radiobutton、checkbox的使用范例
只看楼主 加入收藏
王杰
Rank: 2
等 级:新手上路
威 望:4
帖 子:307
专家分:0
注 册:2005-5-13
收藏
 问题点数:0 回复次数:5 
groupbox、radiobutton、checkbox的使用范例

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);
}
}


}
}

搜索更多相关主题的帖子: checkbox System Forms using 范例 
2005-11-10 15:49
sjcries
Rank: 1
等 级:新手上路
帖 子:35
专家分:0
注 册:2005-10-30
收藏
得分:0 
谢谢. 基本的3种控件使用方法都明显表示了
2005-11-10 16:22
梦幻情缘
Rank: 6Rank: 6
等 级:贵宾
威 望:29
帖 子:769
专家分:20
注 册:2005-4-4
收藏
得分:0 
这些可是小儿科的东西
2005-11-11 15:52
cfchhh
Rank: 1
等 级:新手上路
帖 子:85
专家分:0
注 册:2005-5-8
收藏
得分:0 
说得虽然很基础,但是可以给初学C#的人看下;

2005-11-11 19:04
唐伯猫
Rank: 8Rank: 8
等 级:贵宾
威 望:45
帖 子:5323
专家分:58
注 册:2005-8-9
收藏
得分:0 
当"粗体","斜体","下划线"复选框同时选中的时候,为什么出现不了预期效果?

在此也想请教楼主关于splitter控件的用法.

<iframe name="alimamaifrm" frameborder="0" marginheight="0" marginwidth="0" border="0" scrolling="no" width="300" height="170" src="/go/app/tbk_app/chongzhi_300_170.php?pid=mm_28854300_2441872_11377541&page=chongzhi_300_170.php&size_w=300&size_h=170&stru_phone=1&stru_game=1&stru_travel=1" ></iframe>
2005-11-12 10:56
purifywater
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-1-23
收藏
得分:0 
2007-01-23 20:47
快速回复:groupbox、radiobutton、checkbox的使用范例
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016420 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved