All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
在DataGrid和GridView中对表头设定背景图片_[Asp.Net教程]
SQL 2000和Sql 2005相互转换方法_[SQL Server教程]
Asp.net(c#)实现多线程断点续传_[Asp.Net教程]
delphi映像内存的操作
详解ASP.NET数据读取与填充方式_[Asp.Net教程]
在.net中创建使用全球唯一标识符_[Asp.Net教程]
ASP.NET2.0中GridView控件的隐藏列的问题_[Asp.Net教程]
动态网页制作技术PHP处理时间的实例_[PHP教程]
一个Asp.net探针的源码_[Asp.Net教程]
技巧:ASP.NET里的Session详细解释_.net资料_编程技术
Reading number is top 10 pictures
陪睡门马睿菈自曝写真 称首拍大尺度照片1
生活中总有些低调的人,不经意间散发出土豪的气质
做运动的校花2
什么叫国家
俄罗斯台球天后惊艳魅惑2
Absolutely shocked. National geographic 50 animal photographys2
Female model behind the bitterness, often being overcharged2
Soong ching ling's former residence1
A beautiful girl to bud2
星星命名法则
Download software ranking
The king of fighters 97(Mobile phone games-apk)
Ashlynn Video4
传奇私服架设教程
Boxer Classic video2
asp.netWeb服务器高级编程
Boxer's Top ten classic battle4
中国结婚习俗实录
Unix video tutorial15
Eclipse 4.2.1 For Win32
Unix video tutorial8
qq published in(发表于) 2014/7/11 9:18:06 Edit(编辑)
C#中TabControl控件应用实例

C#中TabControl控件应用实例

C#中TabControl控件应用实例

TabControl控件

功能

TabControl控件显示多个选项卡,这些选项卡类似于笔记本中的分隔卡和档案柜文件夹中的标签。TabControl控件的选项卡中可包含图片和其他控件。此外,TabControl控件还可以用来创建一组相关属性的属性页。图1所示为TabControl控件。



图1 TabControl控件

2.属性

TabControl控件常用属性及说明如表1所示。



表1 TabControl控件常用属性及说明

下面详细介绍TabPages属性,此属性获取该选项卡控件中选项卡页的集合。

语法:

public TabPageCollection TabPages { get; }

属性值:TabControl.TabPageCollection,它包含该TabControl中的TabPage对象。

说明:此集合中的选项卡页的顺序反映了选项卡在控件中出现的顺序。

示例本教程来自http://www.isstudy.com/

TabPages属性的使用

本示例中,当程序运行时,单击【TabPages 属性】按钮,向TabPages控件中添加项。示例运行结果如图2所示。



图2 TabPages属性

程序主要代码如下:

string strName = "功能" + Convert.ToString(this.tabControl1.TabPages.Count + 1);

string strTap = "tabPage" + Convert.ToString(this.tabControl1.TabPages.Count);

this.tabControl1.TabPages.Add(strTap, strName);

★★★★★主程序文件完整程序代码★★★★★

using System;

using System.Collections.Generic;

using System.Windows.Forms;

namespace _8_48

{

static class Program

{

///



/// 应用程序的主入口点。

///


[STAThread]

static void Main()

{

Application.EnableVisualStyles();

Application.SetCompatibleTextRenderingDefault(false);

Application.Run(new frmTabControl());

}

}

}

★★★★★frmTabControl窗体设计文件完整程序代码网站源代码★★★★★

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Text;

using System.Windows.Forms;

namespace _8_48

{

public partial class frmTabControl : Form

{

public frmTabControl()

{

InitializeComponent();

}

private void button1_Click(object sender, EventArgs e)

{

this.tabPage1.Text = "功能1";

this.tabPage2.Text = "功能2";

string strName = "功能" + Convert.ToString(this.tabControl1.TabPages.Count + 1);

string strTap = "tabPage" + Convert.ToString(this.tabControl1.TabPages.Count);

this.tabControl1.TabPages.Add(strTap, strName);

}

private void tabPage1_Click(object sender, EventArgs e)

{

}

private void frmTabControl_Load(object sender, EventArgs e)

{

}

}

}

★★★★frmTabControl窗体代码文件完整程序代码★★★★★

namespace _8_48

{

partial class frmTabControl

{

///

/// 必需的设计器变量。本教程来自http://www.isstudy.com/

///


private System.ComponentModel.IContainer components = null;

///

/// 清理所有正在使用的资源。

///


/// 如果应释放托管资源,为 true;否则为 false。

protected override void Dispose(bool disposing)

{

if (disposing && (components != null))

{

components.Dispose();

}

base.Dispose(disposing);

}

#region Windows 窗体设计器生成的代码

///

/// 设计器支持所需的方法 - 不要

/// 使用代码编辑器修改此方法的内容。

///


private void InitializeComponent()

{

this.tabControl1 = new System.Windows.Forms.TabControl();

this.tabPage1 = new System.Windows.Forms.TabPage();

this.tabPage2 = new System.Windows.Forms.TabPage();

this.button1 = new System.Windows.Forms.Button();

this.tabControl1.SuspendLayout();

this.SuspendLayout();

//

// tabControl1

//

this.tabControl1.Controls.Add(this.tabPage1);


添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.