<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://www.vbex.ru/index.php?action=history&amp;feed=atom&amp;title=VB.Net_by_API%2FSystem.Windows.Forms%2FToolStrip</id>
		<title>VB.Net by API/System.Windows.Forms/ToolStrip - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://www.vbex.ru/index.php?action=history&amp;feed=atom&amp;title=VB.Net_by_API%2FSystem.Windows.Forms%2FToolStrip"/>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net_by_API/System.Windows.Forms/ToolStrip&amp;action=history"/>
		<updated>2026-04-06T02:38:12Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://www.vbex.ru/index.php?title=VB.Net_by_API/System.Windows.Forms/ToolStrip&amp;diff=2641&amp;oldid=prev</id>
		<title> в 16:40, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net_by_API/System.Windows.Forms/ToolStrip&amp;diff=2641&amp;oldid=prev"/>
				<updated>2010-05-26T16:40:16Z</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;Версия 16:40, 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://www.vbex.ru/index.php?title=VB.Net_by_API/System.Windows.Forms/ToolStrip&amp;diff=2642&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net_by_API/System.Windows.Forms/ToolStrip&amp;diff=2642&amp;oldid=prev"/>
				<updated>2010-05-26T12:51:25Z</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;==ToolStrip.DockChanged==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;  &lt;br /&gt;
Imports System&lt;br /&gt;
Imports System.Data&lt;br /&gt;
Imports System.Windows.Forms&lt;br /&gt;
Imports System.Drawing&lt;br /&gt;
Imports System.Data.SqlClient&lt;br /&gt;
public class MainClass&lt;br /&gt;
   Shared Sub Main()&lt;br /&gt;
       Dim form1 As Form = New Form1&lt;br /&gt;
       Application.Run(form1)&lt;br /&gt;
   End Sub&lt;br /&gt;
End Class&lt;br /&gt;
&lt;br /&gt;
Public Class Form1&lt;br /&gt;
    Private Sub ToolStrip1_DockChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ToolStrip1.DockChanged&lt;br /&gt;
        OrientToolStrip(ToolStrip1)&lt;br /&gt;
    End Sub&lt;br /&gt;
    Private Sub OrientToolStrip(ByVal tool_strip As ToolStrip)&lt;br /&gt;
        If tool_strip.Parent Is Nothing Then Exit Sub&lt;br /&gt;
        Dim new_orientation As ToolStripTextDirection = ToolStripTextDirection.Horizontal&lt;br /&gt;
        Select Case tool_strip.Parent.Dock&lt;br /&gt;
            Case DockStyle.Left&lt;br /&gt;
                new_orientation = ToolStripTextDirection.Vertical270&lt;br /&gt;
            Case DockStyle.Right&lt;br /&gt;
                new_orientation = ToolStripTextDirection.Vertical90&lt;br /&gt;
        End Select&lt;br /&gt;
        For Each ctl As ToolStripItem In tool_strip.Items&lt;br /&gt;
            ctl.TextDirection = new_orientation&lt;br /&gt;
            Console.WriteLine(ctl.Name)&lt;br /&gt;
        Next ctl&lt;br /&gt;
    End Sub&lt;br /&gt;
    Private Sub ToolStrip2_ParentChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ToolStrip2.ParentChanged&lt;br /&gt;
        OrientToolStrip(ToolStrip2)&lt;br /&gt;
    End Sub&lt;br /&gt;
End Class&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Global.Microsoft.VisualBasic.rupilerServices.DesignerGenerated()&amp;gt; _&lt;br /&gt;
Partial Public Class Form1&lt;br /&gt;
    Inherits System.Windows.Forms.Form&lt;br /&gt;
    &amp;quot;Form overrides dispose to clean up the component list.&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerNonUserCode()&amp;gt; _&lt;br /&gt;
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)&lt;br /&gt;
        If disposing AndAlso components IsNot Nothing Then&lt;br /&gt;
            components.Dispose()&lt;br /&gt;
        End If&lt;br /&gt;
        MyBase.Dispose(disposing)&lt;br /&gt;
    End Sub&lt;br /&gt;
    &amp;quot;Required by the Windows Form Designer&lt;br /&gt;
    Private components As System.ruponentModel.IContainer&lt;br /&gt;
    &amp;quot;NOTE: The following procedure is required by the Windows Form Designer&lt;br /&gt;
    &amp;quot;It can be modified using the Windows Form Designer.  &lt;br /&gt;
    &amp;quot;Do not modify it using the code editor.&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerStepThrough()&amp;gt; _&lt;br /&gt;
    Private Sub InitializeComponent()&lt;br /&gt;
        Me.ToolStripContainer1 = New System.Windows.Forms.ToolStripContainer&lt;br /&gt;
        Me.ToolStrip4 = New System.Windows.Forms.ToolStrip&lt;br /&gt;
        Me.ToolStripLabel4 = New System.Windows.Forms.ToolStripLabel&lt;br /&gt;
        Me.ToolStrip5 = New System.Windows.Forms.ToolStrip&lt;br /&gt;
        Me.ToolStripLabel5 = New System.Windows.Forms.ToolStripLabel&lt;br /&gt;
        Me.PictureBox1 = New System.Windows.Forms.PictureBox&lt;br /&gt;
        Me.ToolStrip3 = New System.Windows.Forms.ToolStrip&lt;br /&gt;
        Me.ToolStripLabel3 = New System.Windows.Forms.ToolStripLabel&lt;br /&gt;
        Me.ToolStrip1 = New System.Windows.Forms.ToolStrip&lt;br /&gt;
        Me.ToolStripLabel1 = New System.Windows.Forms.ToolStripLabel&lt;br /&gt;
        Me.ToolStrip2 = New System.Windows.Forms.ToolStrip&lt;br /&gt;
        Me.ToolStripLabel2 = New System.Windows.Forms.ToolStripLabel&lt;br /&gt;
        Me.ToolStripContainer1.BottomToolStripPanel.SuspendLayout()&lt;br /&gt;
        Me.ToolStripContainer1.ContentPanel.SuspendLayout()&lt;br /&gt;
        Me.ToolStripContainer1.RightToolStripPanel.SuspendLayout()&lt;br /&gt;
        Me.ToolStripContainer1.TopToolStripPanel.SuspendLayout()&lt;br /&gt;
        Me.ToolStripContainer1.SuspendLayout()&lt;br /&gt;
        Me.ToolStrip4.SuspendLayout()&lt;br /&gt;
        Me.ToolStrip5.SuspendLayout()&lt;br /&gt;
        CType(Me.PictureBox1, System.ruponentModel.ISupportInitialize).BeginInit()&lt;br /&gt;
        Me.ToolStrip3.SuspendLayout()&lt;br /&gt;
        Me.ToolStrip1.SuspendLayout()&lt;br /&gt;
        Me.ToolStrip2.SuspendLayout()&lt;br /&gt;
        Me.SuspendLayout()&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStripContainer1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStripContainer1.BottomToolStripPanel&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStripContainer1.BottomToolStripPanel.Controls.Add(Me.ToolStrip4)&lt;br /&gt;
        Me.ToolStripContainer1.BottomToolStripPanel.Controls.Add(Me.ToolStrip5)&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStripContainer1.ContentPanel&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStripContainer1.ContentPanel.Controls.Add(Me.PictureBox1)&lt;br /&gt;
        Me.ToolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill&lt;br /&gt;
        Me.ToolStripContainer1.Location = New System.Drawing.Point(0, 0)&lt;br /&gt;
        Me.ToolStripContainer1.Name = &amp;quot;ToolStripContainer1&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStripContainer1.RightToolStripPanel&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStripContainer1.RightToolStripPanel.Controls.Add(Me.ToolStrip3)&lt;br /&gt;
        Me.ToolStripContainer1.Size = New System.Drawing.Size(292, 273)&lt;br /&gt;
        Me.ToolStripContainer1.TabIndex = 1&lt;br /&gt;
        Me.ToolStripContainer1.Text = &amp;quot;ToolStripContainer1&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStripContainer1.TopToolStripPanel&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStripContainer1.TopToolStripPanel.Controls.Add(Me.ToolStrip1)&lt;br /&gt;
        Me.ToolStripContainer1.TopToolStripPanel.Controls.Add(Me.ToolStrip2)&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStrip4&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStrip4.Dock = System.Windows.Forms.DockStyle.None&lt;br /&gt;
        Me.ToolStrip4.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripLabel4})&lt;br /&gt;
        Me.ToolStrip4.Location = New System.Drawing.Point(40, 0)&lt;br /&gt;
        Me.ToolStrip4.Name = &amp;quot;ToolStrip4&amp;quot;&lt;br /&gt;
        Me.ToolStrip4.Size = New System.Drawing.Size(109, 25)&lt;br /&gt;
        Me.ToolStrip4.TabIndex = 2&lt;br /&gt;
        Me.ToolStrip4.Text = &amp;quot;ToolStrip4&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStripLabel4&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStripLabel4.Name = &amp;quot;ToolStripLabel4&amp;quot;&lt;br /&gt;
        Me.ToolStripLabel4.Text = &amp;quot;ToolStrip4&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStrip5&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStrip5.Dock = System.Windows.Forms.DockStyle.None&lt;br /&gt;
        Me.ToolStrip5.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripLabel5})&lt;br /&gt;
        Me.ToolStrip5.Location = New System.Drawing.Point(183, 0)&lt;br /&gt;
        Me.ToolStrip5.Name = &amp;quot;ToolStrip5&amp;quot;&lt;br /&gt;
        Me.ToolStrip5.Size = New System.Drawing.Size(109, 25)&lt;br /&gt;
        Me.ToolStrip5.TabIndex = 3&lt;br /&gt;
        Me.ToolStrip5.Text = &amp;quot;ToolStrip5&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStripLabel5&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStripLabel5.Name = &amp;quot;ToolStripLabel5&amp;quot;&lt;br /&gt;
        Me.ToolStripLabel5.Text = &amp;quot;ToolStrip5&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;PictureBox1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.PictureBox1.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(192, Byte), Integer))&lt;br /&gt;
        Me.PictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D&lt;br /&gt;
        Me.PictureBox1.Dock = System.Windows.Forms.DockStyle.Fill&lt;br /&gt;
        Me.PictureBox1.Location = New System.Drawing.Point(0, 0)&lt;br /&gt;
        Me.PictureBox1.Name = &amp;quot;PictureBox1&amp;quot;&lt;br /&gt;
        Me.PictureBox1.Size = New System.Drawing.Size(267, 223)&lt;br /&gt;
        Me.PictureBox1.TabIndex = 0&lt;br /&gt;
        Me.PictureBox1.TabStop = False&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStrip3&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStrip3.Dock = System.Windows.Forms.DockStyle.None&lt;br /&gt;
        Me.ToolStrip3.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripLabel3})&lt;br /&gt;
        Me.ToolStrip3.Location = New System.Drawing.Point(0, 25)&lt;br /&gt;
        Me.ToolStrip3.Name = &amp;quot;ToolStrip3&amp;quot;&lt;br /&gt;
        Me.ToolStrip3.Size = New System.Drawing.Size(25, 81)&lt;br /&gt;
        Me.ToolStrip3.TabIndex = 3&lt;br /&gt;
        Me.ToolStrip3.Text = &amp;quot;ToolStrip3&amp;quot;&lt;br /&gt;
        Me.ToolStrip3.TextDirection = System.Windows.Forms.ToolStripTextDirection.Vertical90&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStripLabel3&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStripLabel3.AutoSize = False&lt;br /&gt;
        Me.ToolStripLabel3.Name = &amp;quot;ToolStripLabel3&amp;quot;&lt;br /&gt;
        Me.ToolStripLabel3.Size = New System.Drawing.Size(25, 69)&lt;br /&gt;
        Me.ToolStripLabel3.Text = &amp;quot;ToolStrip3&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStrip1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStrip1.Dock = System.Windows.Forms.DockStyle.None&lt;br /&gt;
        Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripLabel1})&lt;br /&gt;
        Me.ToolStrip1.Location = New System.Drawing.Point(0, 0)&lt;br /&gt;
        Me.ToolStrip1.Name = &amp;quot;ToolStrip1&amp;quot;&lt;br /&gt;
        Me.ToolStrip1.Size = New System.Drawing.Size(109, 25)&lt;br /&gt;
        Me.ToolStrip1.TabIndex = 0&lt;br /&gt;
        Me.ToolStrip1.Text = &amp;quot;ToolStrip1&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStripLabel1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStripLabel1.Name = &amp;quot;ToolStripLabel1&amp;quot;&lt;br /&gt;
        Me.ToolStripLabel1.Text = &amp;quot;ToolStrip1&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStrip2&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStrip2.Dock = System.Windows.Forms.DockStyle.None&lt;br /&gt;
        Me.ToolStrip2.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripLabel2})&lt;br /&gt;
        Me.ToolStrip2.Location = New System.Drawing.Point(109, 0)&lt;br /&gt;
        Me.ToolStrip2.Name = &amp;quot;ToolStrip2&amp;quot;&lt;br /&gt;
        Me.ToolStrip2.Size = New System.Drawing.Size(145, 25)&lt;br /&gt;
        Me.ToolStrip2.TabIndex = 1&lt;br /&gt;
        Me.ToolStrip2.Text = &amp;quot;ToolStrip2&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ToolStripLabel2&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ToolStripLabel2.Name = &amp;quot;ToolStripLabel2&amp;quot;&lt;br /&gt;
        Me.ToolStripLabel2.Text = &amp;quot;ToolStripLabel2&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Form1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)&lt;br /&gt;
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font&lt;br /&gt;
        Me.ClientSize = New System.Drawing.Size(292, 273)&lt;br /&gt;
        Me.Controls.Add(Me.ToolStripContainer1)&lt;br /&gt;
        Me.Name = &amp;quot;Form1&amp;quot;&lt;br /&gt;
        Me.Text = &amp;quot;UseToolStripContainer2&amp;quot;&lt;br /&gt;
        Me.ToolStripContainer1.BottomToolStripPanel.ResumeLayout(False)&lt;br /&gt;
        Me.ToolStripContainer1.BottomToolStripPanel.PerformLayout()&lt;br /&gt;
        Me.ToolStripContainer1.ContentPanel.ResumeLayout(False)&lt;br /&gt;
        Me.ToolStripContainer1.RightToolStripPanel.ResumeLayout(False)&lt;br /&gt;
        Me.ToolStripContainer1.RightToolStripPanel.PerformLayout()&lt;br /&gt;
        Me.ToolStripContainer1.TopToolStripPanel.ResumeLayout(False)&lt;br /&gt;
        Me.ToolStripContainer1.TopToolStripPanel.PerformLayout()&lt;br /&gt;
        Me.ToolStripContainer1.ResumeLayout(False)&lt;br /&gt;
        Me.ToolStripContainer1.PerformLayout()&lt;br /&gt;
        Me.ToolStrip4.ResumeLayout(False)&lt;br /&gt;
        Me.ToolStrip5.ResumeLayout(False)&lt;br /&gt;
        CType(Me.PictureBox1, System.ruponentModel.ISupportInitialize).EndInit()&lt;br /&gt;
        Me.ToolStrip3.ResumeLayout(False)&lt;br /&gt;
        Me.ToolStrip1.ResumeLayout(False)&lt;br /&gt;
        Me.ToolStrip2.ResumeLayout(False)&lt;br /&gt;
        Me.ResumeLayout(False)&lt;br /&gt;
    End Sub&lt;br /&gt;
    Friend WithEvents ToolStripContainer1 As System.Windows.Forms.ToolStripContainer&lt;br /&gt;
    Friend WithEvents ToolStrip4 As System.Windows.Forms.ToolStrip&lt;br /&gt;
    Friend WithEvents ToolStripLabel4 As System.Windows.Forms.ToolStripLabel&lt;br /&gt;
    Friend WithEvents ToolStrip5 As System.Windows.Forms.ToolStrip&lt;br /&gt;
    Friend WithEvents ToolStripLabel5 As System.Windows.Forms.ToolStripLabel&lt;br /&gt;
    Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox&lt;br /&gt;
    Friend WithEvents ToolStrip3 As System.Windows.Forms.ToolStrip&lt;br /&gt;
    Friend WithEvents ToolStripLabel3 As System.Windows.Forms.ToolStripLabel&lt;br /&gt;
    Friend WithEvents ToolStrip1 As System.Windows.Forms.ToolStrip&lt;br /&gt;
    Friend WithEvents ToolStripLabel1 As System.Windows.Forms.ToolStripLabel&lt;br /&gt;
    Friend WithEvents ToolStrip2 As System.Windows.Forms.ToolStrip&lt;br /&gt;
    Friend WithEvents ToolStripLabel2 As System.Windows.Forms.ToolStripLabel&lt;br /&gt;
End Class&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>