C#-TabControl---ShinePans

program.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace GroupBoxTest13
{
    static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
            //Appearance 获取或设置控件选项卡的可视外观
            //HotTrack 获取或设置一个值,该值指示鼠标移到控件的选项卡时,这些选项卡是否更改外观
            //ImageTrack 获取或设置在控件的选项卡上显示的图像
            //Multiline 获取或设置一个值,该值指示是否可以显示一行以上的选项卡
            //SelectedIndex 获取或设置当前选定的选项卡页
            //TabCount 获取选项卡条中选项卡的数目
            //TabPages 获取该选项卡控件中选项卡的集合

            //DeselectTab 使指定的选项卡后面的选项卡成为当前选项卡
            //RemoveAll 从该选项卡控件中移除所有的选项卡和附加的控件
            //SelectTab使指定的选项卡成为当前选项卡

        }
    }
}

Form1.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace GroupBoxTest13
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            tabControl1.Appearance = TabAppearance.Normal;  //设置选项卡的外观样式

        }

        private void button1_Click(object sender, EventArgs e)
        {
            //声明一个字符串变量,用于生成新增选项卡的名称
            string Title = "新增选项卡" + (tabControl1.TabCount + 1).ToString();
            TabPage MyTabPage = new TabPage(Title);
            //使用TabControl控件的TabPages属性的add方法添加新的选项卡
            tabControl1.TabPages.Add(MyTabPage);
            MessageBox.Show("现有" + tabControl1.TabCount + "个选项卡"); //获取选项卡的个数

        }

        private void button2_Click(object sender, EventArgs e)
        {
            if(tabControl1.SelectedIndex==0)
            {
                MessageBox.Show("情选择要移除的选项卡");
            }
            else
            {
                //使用TabControl控件的TabPages属性的Remove方法移除指定的选项卡
                tabControl1.TabPages.Remove(tabControl1.SelectedTab);
            }
        }
    }
}

Form1设计:

namespace GroupBoxTest13
{
    partial class Form1
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

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

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        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.button2 = new System.Windows.Forms.Button();
            this.tabControl1.SuspendLayout();
            this.SuspendLayout();
            //
            // tabControl1
            //
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Location = new System.Drawing.Point(12, 12);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(341, 128);
            this.tabControl1.TabIndex = 0;
            //
            // tabPage1
            //
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(333, 102);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "tabPage1";
            this.tabPage1.UseVisualStyleBackColor = true;
            //
            // tabPage2
            //
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(192, 74);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "tabPage2";
            this.tabPage2.UseVisualStyleBackColor = true;
            //
            // button1
            //
            this.button1.Location = new System.Drawing.Point(151, 150);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(96, 23);
            this.button1.TabIndex = 1;
            this.button1.Text = "添加选项卡";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            //
            // button2
            //
            this.button2.Location = new System.Drawing.Point(253, 150);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(96, 23);
            this.button2.TabIndex = 2;
            this.button2.Text = "移除选项卡";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            //
            // Form1
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(365, 185);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.tabControl1);
            this.Name = "Form1";
            this.Text = "选项卡";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.tabControl1.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.TabPage tabPage1;
        private System.Windows.Forms.TabPage tabPage2;
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.Button button2;

    }
}

C#-TabControl---ShinePans,布布扣,bubuko.com

时间: 2024-12-12 05:41:39

C#-TabControl---ShinePans的相关文章

WPF TabControl only load the selected TabItem

1.binding ItemsSource public class TabItemViewModel { public string Header { get; set; } public FrameworkElement Content { get; set; } } xmlns:sc="clr-namespace:System.Collections;assembly=mscorlib"<Window.Resources> <sc:ArrayList x:Key

Html之常用元素----ShinePans

1.table,title,td,tr <!--html常用元素--> <html> <head> <meta http-equiv="content-type" content="text/html;charset=UTF-8"/> <title>无标题</title> </head> <body> <table width="200" bor

JavaScript-4.5 事件大全,事件监听---ShinePans

绑定事件 <input type="bubtton" onclick="javascript:alert('I am clicked');"> 处理事件 <script language="JavaScript" for="对象" event="事件"> ... (事件处理代码) ... </script> 鼠标事件举例 <script language="

WPF学习(三)--Menu和TabControl控件介绍

Menu Menu提供了菜单栏方式的多级菜单的管理和操作: 这里对Menu的样式不做任何的定制和管理 下面来对Menu进行测试: 将Menu添加到页面中 运行后,效果如下: 这里没有考虑界面效果和样式. TabControl TabControl是非常常见和有用的控件, 数据控件 DataGrid DataGrid 是WPF中最常用的列表数据显示控件,该控件功能强大,并且拥有强大的可定制性 上面给出的是dataGrid的基本属性,下面我们通过设置样式,来设置下DataGrid的基本样式: 关于触

WPF——菜单栏及TabControl

一.先造一个窗体,然后在窗体里面增加菜单栏及原始的TabControl选项卡 <Grid> <Menu> <MenuItem Header="文件" Click="MenuItem_Click_3"> <MenuItem Header="打开新窗口" Click="MenuItem_Click_1"></MenuItem> <MenuItem Header=&q

C#控件TabControl隐藏page

隐藏 这个需求其实就是TABCONTROL控件会有很多提前制作好的PAGE页面,每次软件启动不可能所有页面都显示出来,目前想了个比较简单的方法解决这个问题 首先定义一个List集合存储TABCONTROL中的tabpages集合 然后LOAD的时候将所有的PAGE的parent设置为NULL,这样就不显示了,还想显示的时候需要把对应的PAGE.parent=tabcontrol控件就行了 private List<TabPage> tempTabPages=null; ------------

ADO.NET之3-Command对象---ShinePans

Command对象可以分成4种,SqlCommand,OleDbComman,OlbcCommand,OracleComman 属性 说明 CommandType 获取或设置Command对象要执行命令的类型 CommandText 获取或设置要对数据源执行的SQL语句或存储过程名或表名 CommandTimeOut 获取或设置在终止对执行命令的尝试并生成错误之前的等待时间 Connection 获取或设置Command对象使用的Connection对象的名称 Parameters 获取Comm

JavaScript-3.1--获取用户的输入,输出用户输入的两数之和---ShinePans

提示用户输入两个数,然后输出用户输入的两数之和 第一次输入 ,输入处为空 第二个输入,输入处为默认27  (这里强调语句的使用) <html> <head> <meta http-equiv="content-type" content="text/html;charset=GB2312"/> <title> 3.1 让用户输入两个数字,然后输出相加的结果 </title> </head> &l

关于vs2013调试的偶然错误发现与总结(vs2013的承载进程)---ShinePans

当项目的属性选择为 启用 vs2013承载进程 或出现一下错误: 尝试运行项目时出错:未能加载文件或程序集"GroupBoxTest" 或它的某一个依赖项.给定程序集名称"..." 或它的某一个依赖项,给定程序集名称或基本代码无效.(异常来自 HRESULT:0x80131047) 这是由于启用了 vs 2013的承载项进程 关于承载进程的好处:(vshost.exe) 启用承载进程可能会对某些 API 的调用产生影响. 在这些情况下,有必要禁用承载进程以返回正确的

C#利用tabControl控件实现多窗体嵌入及关闭

创建一个主窗体(Formmain).两个副窗体(Form1,Form2);在主窗体中分别添加一个menuStrip控件.tabControl控件,并在menu控件上添加一个主菜单和两个子菜单,如下图: 继而,选中tabControl控件属性修改 DrawMode = OwnerDrawFixed,再根据如下代码添加即可: public void Add_TabPage(string str, Form myForm) { if (tabControlCheckHave(this.MainTabC