<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp%2FGUI_Windows_Form%2FTab</id>
		<title>Csharp/C Sharp/GUI Windows Form/Tab - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp%2FGUI_Windows_Form%2FTab"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/GUI_Windows_Form/Tab&amp;action=history"/>
		<updated>2026-04-29T17:15:41Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp/GUI_Windows_Form/Tab&amp;diff=144&amp;oldid=prev</id>
		<title> в 15:31, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/GUI_Windows_Form/Tab&amp;diff=144&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:18Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 15:31, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp/GUI_Windows_Form/Tab&amp;diff=145&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/GUI_Windows_Form/Tab&amp;diff=145&amp;oldid=prev"/>
				<updated>2010-05-26T11:33:31Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Add controls to Tab page==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Text;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
public class Form1 : Form&lt;br /&gt;
{&lt;br /&gt;
      private System.Windows.Forms.TabControl textOptionsTabControl;&lt;br /&gt;
      private System.Windows.Forms.TabPage colorTabPage;&lt;br /&gt;
      private System.Windows.Forms.TabPage sizeTabPage;&lt;br /&gt;
      private System.Windows.Forms.TabPage messageTabPage;&lt;br /&gt;
      private System.Windows.Forms.TabPage aboutTabPage;&lt;br /&gt;
      private System.Windows.Forms.RadioButton greenRadioButton;&lt;br /&gt;
      private System.Windows.Forms.RadioButton redRadioButton;&lt;br /&gt;
      private System.Windows.Forms.RadioButton blackRadioButton;&lt;br /&gt;
      private System.Windows.Forms.RadioButton size20RadioButton;&lt;br /&gt;
      private System.Windows.Forms.RadioButton size16RadioButton;&lt;br /&gt;
      private System.Windows.Forms.RadioButton size12RadioButton;&lt;br /&gt;
      private System.Windows.Forms.RadioButton helloRadioButton;&lt;br /&gt;
      private System.Windows.Forms.RadioButton goodbyeRadioButton;&lt;br /&gt;
      private System.Windows.Forms.Label messageLabel;&lt;br /&gt;
      private System.Windows.Forms.Label displayLabel;&lt;br /&gt;
      &lt;br /&gt;
    public Form1() {&lt;br /&gt;
        InitializeComponent();&lt;br /&gt;
    }&lt;br /&gt;
      private void blackRadioButton_CheckedChanged(object sender, EventArgs e )&lt;br /&gt;
      {&lt;br /&gt;
         displayLabel.ForeColor = Color.Black;&lt;br /&gt;
      }&lt;br /&gt;
      private void redRadioButton_CheckedChanged(object sender, EventArgs e )&lt;br /&gt;
      {&lt;br /&gt;
         displayLabel.ForeColor = Color.Red;&lt;br /&gt;
      } &lt;br /&gt;
      private void greenRadioButton_CheckedChanged(object sender, EventArgs e ) {&lt;br /&gt;
         displayLabel.ForeColor = Color.Green; &lt;br /&gt;
      }&lt;br /&gt;
      private void size12RadioButton_CheckedChanged(object sender, EventArgs e ) {&lt;br /&gt;
         displayLabel.Font = new Font( displayLabel.Font.Name, 12 );&lt;br /&gt;
      }&lt;br /&gt;
      private void size16RadioButton_CheckedChanged(object sender, EventArgs e ) {&lt;br /&gt;
         displayLabel.Font = new Font( displayLabel.Font.Name, 16 );&lt;br /&gt;
      }&lt;br /&gt;
      private void size20RadioButton_CheckedChanged(object sender, EventArgs e ){&lt;br /&gt;
         displayLabel.Font = new Font( displayLabel.Font.Name, 20 );&lt;br /&gt;
      }&lt;br /&gt;
      private void helloRadioButton_CheckedChanged(object sender, EventArgs e ) {&lt;br /&gt;
         displayLabel.Text = &amp;quot;Hello!&amp;quot;;&lt;br /&gt;
      }&lt;br /&gt;
      private void goodbyeRadioButton_CheckedChanged( object sender, EventArgs e ) {&lt;br /&gt;
         displayLabel.Text = &amp;quot;Goodbye!&amp;quot;;&lt;br /&gt;
      }&lt;br /&gt;
      &lt;br /&gt;
      private void InitializeComponent()&lt;br /&gt;
      {&lt;br /&gt;
         this.textOptionsTabControl = new System.Windows.Forms.TabControl();&lt;br /&gt;
         this.colorTabPage = new System.Windows.Forms.TabPage();&lt;br /&gt;
         this.greenRadioButton = new System.Windows.Forms.RadioButton();&lt;br /&gt;
         this.redRadioButton = new System.Windows.Forms.RadioButton();&lt;br /&gt;
         this.blackRadioButton = new System.Windows.Forms.RadioButton();&lt;br /&gt;
         this.sizeTabPage = new System.Windows.Forms.TabPage();&lt;br /&gt;
         this.size20RadioButton = new System.Windows.Forms.RadioButton();&lt;br /&gt;
         this.size16RadioButton = new System.Windows.Forms.RadioButton();&lt;br /&gt;
         this.size12RadioButton = new System.Windows.Forms.RadioButton();&lt;br /&gt;
         this.messageTabPage = new System.Windows.Forms.TabPage();&lt;br /&gt;
         this.goodbyeRadioButton = new System.Windows.Forms.RadioButton();&lt;br /&gt;
         this.helloRadioButton = new System.Windows.Forms.RadioButton();&lt;br /&gt;
         this.aboutTabPage = new System.Windows.Forms.TabPage();&lt;br /&gt;
         this.messageLabel = new System.Windows.Forms.Label();&lt;br /&gt;
         this.displayLabel = new System.Windows.Forms.Label();&lt;br /&gt;
         this.textOptionsTabControl.SuspendLayout();&lt;br /&gt;
         this.colorTabPage.SuspendLayout();&lt;br /&gt;
         this.sizeTabPage.SuspendLayout();&lt;br /&gt;
         this.messageTabPage.SuspendLayout();&lt;br /&gt;
         this.aboutTabPage.SuspendLayout();&lt;br /&gt;
         this.SuspendLayout();&lt;br /&gt;
         // &lt;br /&gt;
         // textOptionsTabControl&lt;br /&gt;
         // &lt;br /&gt;
         this.textOptionsTabControl.Controls.Add(this.colorTabPage);&lt;br /&gt;
         this.textOptionsTabControl.Controls.Add(this.sizeTabPage);&lt;br /&gt;
         this.textOptionsTabControl.Controls.Add(this.messageTabPage);&lt;br /&gt;
         this.textOptionsTabControl.Controls.Add(this.aboutTabPage);&lt;br /&gt;
         this.textOptionsTabControl.Font = new System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
         this.textOptionsTabControl.Location = new System.Drawing.Point(12, 12);&lt;br /&gt;
         this.textOptionsTabControl.Name = &amp;quot;textOptionsTabControl&amp;quot;;&lt;br /&gt;
         this.textOptionsTabControl.SelectedIndex = 0;&lt;br /&gt;
         this.textOptionsTabControl.Size = new System.Drawing.Size(315, 186);&lt;br /&gt;
         this.textOptionsTabControl.TabIndex = 0;&lt;br /&gt;
         // &lt;br /&gt;
         // colorTabPage&lt;br /&gt;
         // &lt;br /&gt;
         this.colorTabPage.Controls.Add(this.greenRadioButton);&lt;br /&gt;
         this.colorTabPage.Controls.Add(this.redRadioButton);&lt;br /&gt;
         this.colorTabPage.Controls.Add(this.blackRadioButton);&lt;br /&gt;
         this.colorTabPage.Location = new System.Drawing.Point(4, 29);&lt;br /&gt;
         this.colorTabPage.Name = &amp;quot;colorTabPage&amp;quot;;&lt;br /&gt;
         this.colorTabPage.Padding = new System.Windows.Forms.Padding(3);&lt;br /&gt;
         this.colorTabPage.Size = new System.Drawing.Size(307, 153);&lt;br /&gt;
         this.colorTabPage.TabIndex = 0;&lt;br /&gt;
         this.colorTabPage.Text = &amp;quot;Color&amp;quot;;&lt;br /&gt;
         // &lt;br /&gt;
         // greenRadioButton&lt;br /&gt;
         // &lt;br /&gt;
         this.greenRadioButton.AutoSize = true;&lt;br /&gt;
         this.greenRadioButton.Font = new System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
         this.greenRadioButton.Location = new System.Drawing.Point(34, 106);&lt;br /&gt;
         this.greenRadioButton.Name = &amp;quot;greenRadioButton&amp;quot;;&lt;br /&gt;
         this.greenRadioButton.Size = new System.Drawing.Size(67, 24);&lt;br /&gt;
         this.greenRadioButton.TabIndex = 2;&lt;br /&gt;
         this.greenRadioButton.Text = &amp;quot;Green&amp;quot;;&lt;br /&gt;
         this.greenRadioButton.CheckedChanged += new System.EventHandler(this.greenRadioButton_CheckedChanged);&lt;br /&gt;
         // &lt;br /&gt;
         // redRadioButton&lt;br /&gt;
         // &lt;br /&gt;
         this.redRadioButton.AutoSize = true;&lt;br /&gt;
         this.redRadioButton.Font = new System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
         this.redRadioButton.Location = new System.Drawing.Point(34, 59);&lt;br /&gt;
         this.redRadioButton.Name = &amp;quot;redRadioButton&amp;quot;;&lt;br /&gt;
         this.redRadioButton.Size = new System.Drawing.Size(52, 24);&lt;br /&gt;
         this.redRadioButton.TabIndex = 1;&lt;br /&gt;
         this.redRadioButton.Text = &amp;quot;Red&amp;quot;;&lt;br /&gt;
         this.redRadioButton.CheckedChanged += new System.EventHandler(this.redRadioButton_CheckedChanged);&lt;br /&gt;
         // &lt;br /&gt;
         // blackRadioButton&lt;br /&gt;
         // &lt;br /&gt;
         this.blackRadioButton.AutoSize = true;&lt;br /&gt;
         this.blackRadioButton.Font = new System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
         this.blackRadioButton.Location = new System.Drawing.Point(34, 15);&lt;br /&gt;
         this.blackRadioButton.Name = &amp;quot;blackRadioButton&amp;quot;;&lt;br /&gt;
         this.blackRadioButton.Size = new System.Drawing.Size(61, 24);&lt;br /&gt;
         this.blackRadioButton.TabIndex = 0;&lt;br /&gt;
         this.blackRadioButton.Text = &amp;quot;Black&amp;quot;;&lt;br /&gt;
         this.blackRadioButton.CheckedChanged += new System.EventHandler(this.blackRadioButton_CheckedChanged);&lt;br /&gt;
         // &lt;br /&gt;
         // sizeTabPage&lt;br /&gt;
         // &lt;br /&gt;
         this.sizeTabPage.Controls.Add(this.size20RadioButton);&lt;br /&gt;
         this.sizeTabPage.Controls.Add(this.size16RadioButton);&lt;br /&gt;
         this.sizeTabPage.Controls.Add(this.size12RadioButton);&lt;br /&gt;
         this.sizeTabPage.Location = new System.Drawing.Point(4, 22);&lt;br /&gt;
         this.sizeTabPage.Name = &amp;quot;sizeTabPage&amp;quot;;&lt;br /&gt;
         this.sizeTabPage.Padding = new System.Windows.Forms.Padding(3);&lt;br /&gt;
         this.sizeTabPage.Size = new System.Drawing.Size(307, 160);&lt;br /&gt;
         this.sizeTabPage.TabIndex = 1;&lt;br /&gt;
         this.sizeTabPage.Text = &amp;quot;Size&amp;quot;;&lt;br /&gt;
         // &lt;br /&gt;
         // size20RadioButton&lt;br /&gt;
         // &lt;br /&gt;
         this.size20RadioButton.AutoSize = true;&lt;br /&gt;
         this.size20RadioButton.Font = new System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
         this.size20RadioButton.Location = new System.Drawing.Point(34, 106);&lt;br /&gt;
         this.size20RadioButton.Name = &amp;quot;size20RadioButton&amp;quot;;&lt;br /&gt;
         this.size20RadioButton.Size = new System.Drawing.Size(79, 24);&lt;br /&gt;
         this.size20RadioButton.TabIndex = 2;&lt;br /&gt;
         this.size20RadioButton.Text = &amp;quot;20 point&amp;quot;;&lt;br /&gt;
         this.size20RadioButton.CheckedChanged += new System.EventHandler(this.size20RadioButton_CheckedChanged);&lt;br /&gt;
         // &lt;br /&gt;
         // size16RadioButton&lt;br /&gt;
         // &lt;br /&gt;
         this.size16RadioButton.AutoSize = true;&lt;br /&gt;
         this.size16RadioButton.Font = new System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
         this.size16RadioButton.Location = new System.Drawing.Point(34, 59);&lt;br /&gt;
         this.size16RadioButton.Name = &amp;quot;size16RadioButton&amp;quot;;&lt;br /&gt;
         this.size16RadioButton.Size = new System.Drawing.Size(79, 24);&lt;br /&gt;
         this.size16RadioButton.TabIndex = 1;&lt;br /&gt;
         this.size16RadioButton.Text = &amp;quot;16 point&amp;quot;;&lt;br /&gt;
         this.size16RadioButton.CheckedChanged += new System.EventHandler(this.size16RadioButton_CheckedChanged);&lt;br /&gt;
         // &lt;br /&gt;
         // size12RadioButton&lt;br /&gt;
         // &lt;br /&gt;
         this.size12RadioButton.AutoSize = true;&lt;br /&gt;
         this.size12RadioButton.Font = new System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
         this.size12RadioButton.Location = new System.Drawing.Point(34, 15);&lt;br /&gt;
         this.size12RadioButton.Name = &amp;quot;size12RadioButton&amp;quot;;&lt;br /&gt;
         this.size12RadioButton.Size = new System.Drawing.Size(79, 24);&lt;br /&gt;
         this.size12RadioButton.TabIndex = 0;&lt;br /&gt;
         this.size12RadioButton.Text = &amp;quot;12 point&amp;quot;;&lt;br /&gt;
         this.size12RadioButton.CheckedChanged += new System.EventHandler(this.size12RadioButton_CheckedChanged);&lt;br /&gt;
         // &lt;br /&gt;
         // messageTabPage&lt;br /&gt;
         // &lt;br /&gt;
         this.messageTabPage.Controls.Add(this.goodbyeRadioButton);&lt;br /&gt;
         this.messageTabPage.Controls.Add(this.helloRadioButton);&lt;br /&gt;
         this.messageTabPage.Location = new System.Drawing.Point(4, 29);&lt;br /&gt;
         this.messageTabPage.Name = &amp;quot;messageTabPage&amp;quot;;&lt;br /&gt;
         this.messageTabPage.Size = new System.Drawing.Size(307, 153);&lt;br /&gt;
         this.messageTabPage.TabIndex = 2;&lt;br /&gt;
         this.messageTabPage.Text = &amp;quot;Message&amp;quot;;&lt;br /&gt;
         // &lt;br /&gt;
         // goodbyeRadioButton&lt;br /&gt;
         // &lt;br /&gt;
         this.goodbyeRadioButton.AutoSize = true;&lt;br /&gt;
         this.goodbyeRadioButton.Font = new System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
         this.goodbyeRadioButton.Location = new System.Drawing.Point(29, 66);&lt;br /&gt;
         this.goodbyeRadioButton.Name = &amp;quot;goodbyeRadioButton&amp;quot;;&lt;br /&gt;
         this.goodbyeRadioButton.Size = new System.Drawing.Size(91, 24);&lt;br /&gt;
         this.goodbyeRadioButton.TabIndex = 1;&lt;br /&gt;
         this.goodbyeRadioButton.Text = &amp;quot;Goodbye!&amp;quot;;&lt;br /&gt;
         this.goodbyeRadioButton.CheckedChanged += new System.EventHandler(this.goodbyeRadioButton_CheckedChanged);&lt;br /&gt;
         // &lt;br /&gt;
         // helloRadioButton&lt;br /&gt;
         // &lt;br /&gt;
         this.helloRadioButton.AutoSize = true;&lt;br /&gt;
         this.helloRadioButton.Font = new System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
         this.helloRadioButton.Location = new System.Drawing.Point(29, 21);&lt;br /&gt;
         this.helloRadioButton.Name = &amp;quot;helloRadioButton&amp;quot;;&lt;br /&gt;
         this.helloRadioButton.Size = new System.Drawing.Size(62, 24);&lt;br /&gt;
         this.helloRadioButton.TabIndex = 0;&lt;br /&gt;
         this.helloRadioButton.Text = &amp;quot;Hello!&amp;quot;;&lt;br /&gt;
         this.helloRadioButton.CheckedChanged += new System.EventHandler(this.helloRadioButton_CheckedChanged);&lt;br /&gt;
         // &lt;br /&gt;
         // aboutTabPage&lt;br /&gt;
         // &lt;br /&gt;
         this.aboutTabPage.Controls.Add(this.messageLabel);&lt;br /&gt;
         this.aboutTabPage.Location = new System.Drawing.Point(4, 29);&lt;br /&gt;
         this.aboutTabPage.Name = &amp;quot;aboutTabPage&amp;quot;;&lt;br /&gt;
         this.aboutTabPage.Size = new System.Drawing.Size(307, 153);&lt;br /&gt;
         this.aboutTabPage.TabIndex = 3;&lt;br /&gt;
         this.aboutTabPage.Text = &amp;quot;About&amp;quot;;&lt;br /&gt;
         // &lt;br /&gt;
         // messageLabel&lt;br /&gt;
         // &lt;br /&gt;
         this.messageLabel.Font = new System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
         this.messageLabel.Location = new System.Drawing.Point(18, 20);&lt;br /&gt;
         this.messageLabel.Name = &amp;quot;messageLabel&amp;quot;;&lt;br /&gt;
         this.messageLabel.Size = new System.Drawing.Size(227, 99);&lt;br /&gt;
         this.messageLabel.TabIndex = 0;&lt;br /&gt;
         this.messageLabel.Text = &amp;quot;Info tab&amp;quot;;&lt;br /&gt;
         // &lt;br /&gt;
         // displayLabel&lt;br /&gt;
         // &lt;br /&gt;
         this.displayLabel.Location = new System.Drawing.Point(120, 211);&lt;br /&gt;
         this.displayLabel.Name = &amp;quot;displayLabel&amp;quot;;&lt;br /&gt;
         this.displayLabel.Text = &amp;quot;www.nfex.ru&amp;quot;;&lt;br /&gt;
         this.displayLabel.Size = new System.Drawing.Size(146, 42);&lt;br /&gt;
         this.displayLabel.TabIndex = 1;&lt;br /&gt;
         this.displayLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;&lt;br /&gt;
         // &lt;br /&gt;
         // UsingTabsForm&lt;br /&gt;
         // &lt;br /&gt;
         this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);&lt;br /&gt;
         this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;&lt;br /&gt;
         this.ClientSize = new System.Drawing.Size(340, 262);&lt;br /&gt;
         this.Controls.Add(this.displayLabel);&lt;br /&gt;
         this.Controls.Add(this.textOptionsTabControl);&lt;br /&gt;
         this.Name = &amp;quot;UsingTabsForm&amp;quot;;&lt;br /&gt;
         this.Text = &amp;quot;Using Tabs&amp;quot;;&lt;br /&gt;
         this.textOptionsTabControl.ResumeLayout(false);&lt;br /&gt;
         this.colorTabPage.ResumeLayout(false);&lt;br /&gt;
         this.colorTabPage.PerformLayout();&lt;br /&gt;
         this.sizeTabPage.ResumeLayout(false);&lt;br /&gt;
         this.sizeTabPage.PerformLayout();&lt;br /&gt;
         this.messageTabPage.ResumeLayout(false);&lt;br /&gt;
         this.messageTabPage.PerformLayout();&lt;br /&gt;
         this.aboutTabPage.ResumeLayout(false);&lt;br /&gt;
         this.ResumeLayout(false);&lt;br /&gt;
      }&lt;br /&gt;
  [STAThread]&lt;br /&gt;
  static void Main()&lt;br /&gt;
  {&lt;br /&gt;
    Application.EnableVisualStyles();&lt;br /&gt;
    Application.Run(new Form1());&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==TabControl==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
using System.Text;&lt;br /&gt;
class Form1 : Form {&lt;br /&gt;
    public Form1() {&lt;br /&gt;
        this.tabPage2 = new System.Windows.Forms.TabPage();&lt;br /&gt;
        this.textBoxMessage = new System.Windows.Forms.TextBox();&lt;br /&gt;
        this.tabPage1 = new System.Windows.Forms.TabPage();&lt;br /&gt;
        this.buttonShowMessage = new System.Windows.Forms.Button();&lt;br /&gt;
        this.tabControl1 = new System.Windows.Forms.TabControl();&lt;br /&gt;
        this.tabPage2.SuspendLayout();&lt;br /&gt;
        this.tabPage1.SuspendLayout();&lt;br /&gt;
        this.tabControl1.SuspendLayout();&lt;br /&gt;
        this.SuspendLayout();&lt;br /&gt;
        this.tabPage2.Controls.Add(this.textBoxMessage);&lt;br /&gt;
        this.tabPage2.Location = new System.Drawing.Point(4, 22);&lt;br /&gt;
        this.tabPage2.Name = &amp;quot;tabPage2&amp;quot;;&lt;br /&gt;
        this.tabPage2.Padding = new System.Windows.Forms.Padding(3);&lt;br /&gt;
        this.tabPage2.Size = new System.Drawing.Size(259, 37);&lt;br /&gt;
        this.tabPage2.TabIndex = 1;&lt;br /&gt;
        this.tabPage2.Text = &amp;quot;Tab Two&amp;quot;;&lt;br /&gt;
        this.textBoxMessage.Location = new System.Drawing.Point(72, 7);&lt;br /&gt;
        this.textBoxMessage.Name = &amp;quot;textBoxMessage&amp;quot;;&lt;br /&gt;
        this.textBoxMessage.Size = new System.Drawing.Size(100, 20);&lt;br /&gt;
        this.textBoxMessage.TabIndex = 0;&lt;br /&gt;
        this.tabPage1.Controls.Add(this.buttonShowMessage);&lt;br /&gt;
        this.tabPage1.Location = new System.Drawing.Point(4, 22);&lt;br /&gt;
        this.tabPage1.Name = &amp;quot;tabPage1&amp;quot;;&lt;br /&gt;
        this.tabPage1.Padding = new System.Windows.Forms.Padding(3);&lt;br /&gt;
        this.tabPage1.Size = new System.Drawing.Size(259, 37);&lt;br /&gt;
        this.tabPage1.TabIndex = 0;&lt;br /&gt;
        this.tabPage1.Text = &amp;quot;Tab One&amp;quot;;&lt;br /&gt;
        this.buttonShowMessage.Location = new System.Drawing.Point(74, 7);&lt;br /&gt;
        this.buttonShowMessage.Name = &amp;quot;buttonShowMessage&amp;quot;;&lt;br /&gt;
        this.buttonShowMessage.Size = new System.Drawing.Size(107, 24);&lt;br /&gt;
        this.buttonShowMessage.TabIndex = 0;&lt;br /&gt;
        this.buttonShowMessage.Text = &amp;quot;Show Message&amp;quot;;&lt;br /&gt;
        this.buttonShowMessage.Click += new System.EventHandler(this.buttonShowMessage_Click);&lt;br /&gt;
        this.tabControl1.Controls.Add(this.tabPage1);&lt;br /&gt;
        this.tabControl1.Controls.Add(this.tabPage2);&lt;br /&gt;
        this.tabControl1.Location = new System.Drawing.Point(13, 13);&lt;br /&gt;
        this.tabControl1.Name = &amp;quot;tabControl1&amp;quot;;&lt;br /&gt;
        this.tabControl1.SelectedIndex = 0;&lt;br /&gt;
        this.tabControl1.Size = new System.Drawing.Size(267, 63);&lt;br /&gt;
        this.tabControl1.TabIndex = 0;&lt;br /&gt;
        this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);&lt;br /&gt;
        this.ClientSize = new System.Drawing.Size(292, 83);&lt;br /&gt;
        this.Controls.Add(this.tabControl1);&lt;br /&gt;
        this.tabPage2.ResumeLayout(false);&lt;br /&gt;
        this.tabPage2.PerformLayout();&lt;br /&gt;
        this.tabPage1.ResumeLayout(false);&lt;br /&gt;
        this.tabControl1.ResumeLayout(false);&lt;br /&gt;
        this.ResumeLayout(false);&lt;br /&gt;
    }&lt;br /&gt;
    private void buttonShowMessage_Click(object sender, EventArgs e) {&lt;br /&gt;
        MessageBox.Show(this.textBoxMessage.Text);&lt;br /&gt;
    }&lt;br /&gt;
    private System.Windows.Forms.TabPage tabPage2;&lt;br /&gt;
    private System.Windows.Forms.TextBox textBoxMessage;&lt;br /&gt;
    private System.Windows.Forms.TabPage tabPage1;&lt;br /&gt;
    private System.Windows.Forms.Button buttonShowMessage;&lt;br /&gt;
    private System.Windows.Forms.TabControl tabControl1;&lt;br /&gt;
    [STAThread]&lt;br /&gt;
    static void Main() {&lt;br /&gt;
        Application.EnableVisualStyles();&lt;br /&gt;
        Application.Run(new Form1());&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>