<?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_by_API%2FSystem.Windows.Forms%2FSplitContainer</id>
		<title>Csharp/C Sharp by API/System.Windows.Forms/SplitContainer - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp_by_API%2FSystem.Windows.Forms%2FSplitContainer"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System.Windows.Forms/SplitContainer&amp;action=history"/>
		<updated>2026-04-30T13:44:33Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System.Windows.Forms/SplitContainer&amp;diff=4230&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_by_API/System.Windows.Forms/SplitContainer&amp;diff=4230&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:35Z</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_by_API/System.Windows.Forms/SplitContainer&amp;diff=4231&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System.Windows.Forms/SplitContainer&amp;diff=4231&amp;oldid=prev"/>
				<updated>2010-05-26T12:10:11Z</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;==new SplitContainer()==&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.SplitContainer splitContainer1;&lt;br /&gt;
  private System.Windows.Forms.SplitContainer splitContainer2;&lt;br /&gt;
  private System.Windows.Forms.WebBrowser webBrowser1;&lt;br /&gt;
  private System.Windows.Forms.TextBox TextBox1;&lt;br /&gt;
  private System.Windows.Forms.Panel pnlFileList;&lt;br /&gt;
  private System.Windows.Forms.Button cmdHide;&lt;br /&gt;
  private System.Windows.Forms.ListView ListView1;&lt;br /&gt;
  private System.Windows.Forms.ColumnHeader ColumnHeader1;&lt;br /&gt;
  private System.Windows.Forms.Panel pnlShow;&lt;br /&gt;
  private System.Windows.Forms.Button cmdShow;&lt;br /&gt;
  public Form1() {&lt;br /&gt;
        InitializeComponent();&lt;br /&gt;
        ListView1.Items.Add(&amp;quot;A&amp;quot;);&lt;br /&gt;
        ListView1.Items.Add(&amp;quot;B&amp;quot;);&lt;br /&gt;
        ListView1.Items.Add(&amp;quot;C&amp;quot;);&lt;br /&gt;
  }&lt;br /&gt;
  private void cmdHide_Click(object sender, EventArgs e)&lt;br /&gt;
  {&lt;br /&gt;
    splitContainer1.Panel1Collapsed = true;&lt;br /&gt;
    pnlShow.Visible = true;&lt;br /&gt;
  }&lt;br /&gt;
  private void cmdShow_Click(object sender, EventArgs e)&lt;br /&gt;
  {&lt;br /&gt;
    splitContainer1.Panel1Collapsed = false;&lt;br /&gt;
    pnlShow.Visible = false;&lt;br /&gt;
    &lt;br /&gt;
  }&lt;br /&gt;
  private void InitializeComponent()&lt;br /&gt;
  {&lt;br /&gt;
        this.splitContainer1 = new System.Windows.Forms.SplitContainer();&lt;br /&gt;
        this.pnlFileList = new System.Windows.Forms.Panel();&lt;br /&gt;
        this.cmdHide = new System.Windows.Forms.Button();&lt;br /&gt;
        this.ListView1 = new System.Windows.Forms.ListView();&lt;br /&gt;
        this.ColumnHeader1 = new System.Windows.Forms.ColumnHeader();&lt;br /&gt;
        this.splitContainer2 = new System.Windows.Forms.SplitContainer();&lt;br /&gt;
        this.webBrowser1 = new System.Windows.Forms.WebBrowser();&lt;br /&gt;
        this.TextBox1 = new System.Windows.Forms.TextBox();&lt;br /&gt;
        this.pnlShow = new System.Windows.Forms.Panel();&lt;br /&gt;
        this.cmdShow = new System.Windows.Forms.Button();&lt;br /&gt;
        this.splitContainer1.Panel1.SuspendLayout();&lt;br /&gt;
        this.splitContainer1.Panel2.SuspendLayout();&lt;br /&gt;
        this.splitContainer1.SuspendLayout();&lt;br /&gt;
        this.pnlFileList.SuspendLayout();&lt;br /&gt;
        this.splitContainer2.Panel1.SuspendLayout();&lt;br /&gt;
        this.splitContainer2.Panel2.SuspendLayout();&lt;br /&gt;
        this.splitContainer2.SuspendLayout();&lt;br /&gt;
        this.pnlShow.SuspendLayout();&lt;br /&gt;
        this.SuspendLayout();&lt;br /&gt;
        // &lt;br /&gt;
        // splitContainer1&lt;br /&gt;
        // &lt;br /&gt;
        this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;&lt;br /&gt;
        this.splitContainer1.Location = new System.Drawing.Point(29, 10);&lt;br /&gt;
        this.splitContainer1.Name = &amp;quot;splitContainer1&amp;quot;;&lt;br /&gt;
        // &lt;br /&gt;
        // splitContainer1.Panel1&lt;br /&gt;
        // &lt;br /&gt;
        this.splitContainer1.Panel1.Controls.Add(this.pnlFileList);&lt;br /&gt;
        this.splitContainer1.Panel1MinSize = 50;&lt;br /&gt;
        // &lt;br /&gt;
        // splitContainer1.Panel2&lt;br /&gt;
        // &lt;br /&gt;
        this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);&lt;br /&gt;
        this.splitContainer1.Size = new System.Drawing.Size(477, 366);&lt;br /&gt;
        this.splitContainer1.SplitterDistance = 155;&lt;br /&gt;
        this.splitContainer1.TabIndex = 0;&lt;br /&gt;
        this.splitContainer1.Text = &amp;quot;splitContainer1&amp;quot;;&lt;br /&gt;
        // &lt;br /&gt;
        // pnlFileList&lt;br /&gt;
        // &lt;br /&gt;
        this.pnlFileList.Controls.Add(this.cmdHide);&lt;br /&gt;
        this.pnlFileList.Controls.Add(this.ListView1);&lt;br /&gt;
        this.pnlFileList.Dock = System.Windows.Forms.DockStyle.Fill;&lt;br /&gt;
        this.pnlFileList.Location = new System.Drawing.Point(0, 0);&lt;br /&gt;
        this.pnlFileList.Name = &amp;quot;pnlFileList&amp;quot;;&lt;br /&gt;
        this.pnlFileList.Padding = new System.Windows.Forms.Padding(0, 0, 1, 0);&lt;br /&gt;
        this.pnlFileList.Size = new System.Drawing.Size(155, 366);&lt;br /&gt;
        this.pnlFileList.TabIndex = 21;&lt;br /&gt;
        // &lt;br /&gt;
        // cmdHide&lt;br /&gt;
        // &lt;br /&gt;
        this.cmdHide.Dock = System.Windows.Forms.DockStyle.Bottom;&lt;br /&gt;
        this.cmdHide.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
        this.cmdHide.Location = new System.Drawing.Point(0, 346);&lt;br /&gt;
        this.cmdHide.Name = &amp;quot;cmdHide&amp;quot;;&lt;br /&gt;
        this.cmdHide.Size = new System.Drawing.Size(154, 20);&lt;br /&gt;
        this.cmdHide.TabIndex = 23;&lt;br /&gt;
        this.cmdHide.Text = &amp;quot;&amp;amp;lt;&amp;amp;lt; Hide&amp;quot;;&lt;br /&gt;
        this.cmdHide.Click += new System.EventHandler(this.cmdHide_Click);&lt;br /&gt;
        // &lt;br /&gt;
        // ListView1&lt;br /&gt;
        // &lt;br /&gt;
        this.ListView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)&lt;br /&gt;
                    | System.Windows.Forms.AnchorStyles.Left)&lt;br /&gt;
                    | System.Windows.Forms.AnchorStyles.Right)));&lt;br /&gt;
        this.ListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {&lt;br /&gt;
        this.ColumnHeader1});&lt;br /&gt;
        this.ListView1.Location = new System.Drawing.Point(0, 3);&lt;br /&gt;
        this.ListView1.Name = &amp;quot;ListView1&amp;quot;;&lt;br /&gt;
        this.ListView1.Size = new System.Drawing.Size(152, 337);&lt;br /&gt;
        this.ListView1.TabIndex = 22;&lt;br /&gt;
        this.ListView1.UseCompatibleStateImageBehavior = false;&lt;br /&gt;
        this.ListView1.View = System.Windows.Forms.View.Details;&lt;br /&gt;
        // &lt;br /&gt;
        // ColumnHeader1&lt;br /&gt;
        // &lt;br /&gt;
        this.ColumnHeader1.Name = &amp;quot;ColumnHeader1&amp;quot;;&lt;br /&gt;
        this.ColumnHeader1.Text = &amp;quot;File&amp;quot;;&lt;br /&gt;
        this.ColumnHeader1.Width = 99;&lt;br /&gt;
        // &lt;br /&gt;
        // splitContainer2&lt;br /&gt;
        // &lt;br /&gt;
        this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;&lt;br /&gt;
        this.splitContainer2.Location = new System.Drawing.Point(0, 0);&lt;br /&gt;
        this.splitContainer2.Name = &amp;quot;splitContainer2&amp;quot;;&lt;br /&gt;
        this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;&lt;br /&gt;
        // &lt;br /&gt;
        // splitContainer2.Panel1&lt;br /&gt;
        // &lt;br /&gt;
        this.splitContainer2.Panel1.Controls.Add(this.webBrowser1);&lt;br /&gt;
        // &lt;br /&gt;
        // splitContainer2.Panel2&lt;br /&gt;
        // &lt;br /&gt;
        this.splitContainer2.Panel2.Controls.Add(this.TextBox1);&lt;br /&gt;
        this.splitContainer2.Size = new System.Drawing.Size(318, 366);&lt;br /&gt;
        this.splitContainer2.SplitterDistance = 173;&lt;br /&gt;
        this.splitContainer2.TabIndex = 0;&lt;br /&gt;
        this.splitContainer2.Text = &amp;quot;splitContainer2&amp;quot;;&lt;br /&gt;
        // &lt;br /&gt;
        // webBrowser1&lt;br /&gt;
        // &lt;br /&gt;
        this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill;&lt;br /&gt;
        this.webBrowser1.Location = new System.Drawing.Point(0, 0);&lt;br /&gt;
        this.webBrowser1.Name = &amp;quot;webBrowser1&amp;quot;;&lt;br /&gt;
        this.webBrowser1.Size = new System.Drawing.Size(318, 173);&lt;br /&gt;
        this.webBrowser1.TabIndex = 0;&lt;br /&gt;
        // &lt;br /&gt;
        // TextBox1&lt;br /&gt;
        // &lt;br /&gt;
        this.TextBox1.Dock = System.Windows.Forms.DockStyle.Fill;&lt;br /&gt;
        this.TextBox1.Location = new System.Drawing.Point(0, 0);&lt;br /&gt;
        this.TextBox1.Multiline = true;&lt;br /&gt;
        this.TextBox1.Name = &amp;quot;TextBox1&amp;quot;;&lt;br /&gt;
        this.TextBox1.ReadOnly = true;&lt;br /&gt;
        this.TextBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;&lt;br /&gt;
        this.TextBox1.Size = new System.Drawing.Size(318, 189);&lt;br /&gt;
        this.TextBox1.TabIndex = 1;&lt;br /&gt;
        // &lt;br /&gt;
        // pnlShow&lt;br /&gt;
        // &lt;br /&gt;
        this.pnlShow.Controls.Add(this.cmdShow);&lt;br /&gt;
        this.pnlShow.Dock = System.Windows.Forms.DockStyle.Left;&lt;br /&gt;
        this.pnlShow.Location = new System.Drawing.Point(10, 10);&lt;br /&gt;
        this.pnlShow.Name = &amp;quot;pnlShow&amp;quot;;&lt;br /&gt;
        this.pnlShow.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);&lt;br /&gt;
        this.pnlShow.Size = new System.Drawing.Size(19, 366);&lt;br /&gt;
        this.pnlShow.TabIndex = 23;&lt;br /&gt;
        this.pnlShow.Visible = false;&lt;br /&gt;
        // &lt;br /&gt;
        // cmdShow&lt;br /&gt;
        // &lt;br /&gt;
        this.cmdShow.Dock = System.Windows.Forms.DockStyle.Fill;&lt;br /&gt;
        this.cmdShow.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
        this.cmdShow.Font = new System.Drawing.Font(&amp;quot;Tahoma&amp;quot;, 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
        this.cmdShow.Location = new System.Drawing.Point(0, 0);&lt;br /&gt;
        this.cmdShow.Name = &amp;quot;cmdShow&amp;quot;;&lt;br /&gt;
        this.cmdShow.Size = new System.Drawing.Size(16, 366);&lt;br /&gt;
        this.cmdShow.TabIndex = 21;&lt;br /&gt;
        this.cmdShow.Text = &amp;quot;&amp;gt;&amp;quot;;&lt;br /&gt;
        this.cmdShow.Click += new System.EventHandler(this.cmdShow_Click);&lt;br /&gt;
        // &lt;br /&gt;
        // Form1&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(516, 386);&lt;br /&gt;
        this.Controls.Add(this.splitContainer1);&lt;br /&gt;
        this.Controls.Add(this.pnlShow);&lt;br /&gt;
        this.Font = new System.Drawing.Font(&amp;quot;Tahoma&amp;quot;, 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
        this.Name = &amp;quot;Form1&amp;quot;;&lt;br /&gt;
        this.Padding = new System.Windows.Forms.Padding(10);&lt;br /&gt;
        this.Text = &amp;quot;Split Window&amp;quot;;&lt;br /&gt;
        this.splitContainer1.Panel1.ResumeLayout(false);&lt;br /&gt;
        this.splitContainer1.Panel2.ResumeLayout(false);&lt;br /&gt;
        this.splitContainer1.ResumeLayout(false);&lt;br /&gt;
        this.pnlFileList.ResumeLayout(false);&lt;br /&gt;
        this.splitContainer2.Panel1.ResumeLayout(false);&lt;br /&gt;
        this.splitContainer2.Panel2.ResumeLayout(false);&lt;br /&gt;
        this.splitContainer2.Panel2.PerformLayout();&lt;br /&gt;
        this.splitContainer2.ResumeLayout(false);&lt;br /&gt;
        this.pnlShow.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;
  &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>