<?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=Visual_C%2B%2B_.NET%2FGUI_Form%2FPanel</id>
		<title>Visual C++ .NET/GUI Form/Panel - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Visual_C%2B%2B_.NET%2FGUI_Form%2FPanel"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Visual_C%2B%2B_.NET/GUI_Form/Panel&amp;action=history"/>
		<updated>2026-04-29T17:58:47Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Visual_C%2B%2B_.NET/GUI_Form/Panel&amp;diff=3782&amp;oldid=prev</id>
		<title> в 15:31, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Visual_C%2B%2B_.NET/GUI_Form/Panel&amp;diff=3782&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:02Z</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=Visual_C%2B%2B_.NET/GUI_Form/Panel&amp;diff=3783&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Visual_C%2B%2B_.NET/GUI_Form/Panel&amp;diff=3783&amp;oldid=prev"/>
				<updated>2010-05-26T12:06:05Z</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;==Panels==&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 namespace System;&lt;br /&gt;
  using namespace System::ComponentModel;&lt;br /&gt;
  using namespace System::Collections;&lt;br /&gt;
  using namespace System::Windows::Forms;&lt;br /&gt;
  using namespace System::Data;&lt;br /&gt;
  using namespace System::Drawing;&lt;br /&gt;
&lt;br /&gt;
  public ref class Form1 : public System::Windows::Forms::Form&lt;br /&gt;
  {&lt;br /&gt;
  public:&lt;br /&gt;
    Form1(void)&lt;br /&gt;
    {&lt;br /&gt;
      InitializeComponent();&lt;br /&gt;
    }&lt;br /&gt;
  private:&lt;br /&gt;
        System::Windows::Forms::Panel^  Rightpanel;&lt;br /&gt;
        System::Windows::Forms::Button^  button2;&lt;br /&gt;
        System::Windows::Forms::Button^  button1;&lt;br /&gt;
        System::Windows::Forms::Panel^  Leftpanel;&lt;br /&gt;
        System::Windows::Forms::Button^  bnHide;&lt;br /&gt;
        System::Windows::Forms::Button^  bnDisable;&lt;br /&gt;
    void InitializeComponent(void)&lt;br /&gt;
    {&lt;br /&gt;
            this-&amp;gt;Rightpanel = (gcnew System::Windows::Forms::Panel());&lt;br /&gt;
            this-&amp;gt;button2 = (gcnew System::Windows::Forms::Button());&lt;br /&gt;
            this-&amp;gt;button1 = (gcnew System::Windows::Forms::Button());&lt;br /&gt;
            this-&amp;gt;Leftpanel = (gcnew System::Windows::Forms::Panel());&lt;br /&gt;
            this-&amp;gt;bnHide = (gcnew System::Windows::Forms::Button());&lt;br /&gt;
            this-&amp;gt;bnDisable = (gcnew System::Windows::Forms::Button());&lt;br /&gt;
            this-&amp;gt;Rightpanel-&amp;gt;SuspendLayout();&lt;br /&gt;
            this-&amp;gt;Leftpanel-&amp;gt;SuspendLayout();&lt;br /&gt;
            this-&amp;gt;SuspendLayout();&lt;br /&gt;
            // &lt;br /&gt;
            // Rightpanel&lt;br /&gt;
            // &lt;br /&gt;
            this-&amp;gt;Rightpanel-&amp;gt;AutoScroll = true;&lt;br /&gt;
            this-&amp;gt;Rightpanel-&amp;gt;BorderStyle = &lt;br /&gt;
                System::Windows::Forms::BorderStyle::Fixed3D;&lt;br /&gt;
            this-&amp;gt;Rightpanel-&amp;gt;Controls-&amp;gt;Add(this-&amp;gt;button2);&lt;br /&gt;
            this-&amp;gt;Rightpanel-&amp;gt;Controls-&amp;gt;Add(this-&amp;gt;button1);&lt;br /&gt;
            this-&amp;gt;Rightpanel-&amp;gt;Location = System::Drawing::Point(161, 22);&lt;br /&gt;
            this-&amp;gt;Rightpanel-&amp;gt;Name = L&amp;quot;Rightpanel&amp;quot;;&lt;br /&gt;
            this-&amp;gt;Rightpanel-&amp;gt;Size = System::Drawing::Size(121, 60);&lt;br /&gt;
            this-&amp;gt;Rightpanel-&amp;gt;TabIndex = 3;&lt;br /&gt;
            // &lt;br /&gt;
            // button2&lt;br /&gt;
            // &lt;br /&gt;
            this-&amp;gt;button2-&amp;gt;Location = System::Drawing::Point(20, 62);&lt;br /&gt;
            this-&amp;gt;button2-&amp;gt;Name = L&amp;quot;button2&amp;quot;;&lt;br /&gt;
            this-&amp;gt;button2-&amp;gt;Size = System::Drawing::Size(75, 23);&lt;br /&gt;
            this-&amp;gt;button2-&amp;gt;TabIndex = 1;&lt;br /&gt;
            this-&amp;gt;button2-&amp;gt;Text = L&amp;quot;button 2&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // button1&lt;br /&gt;
            // &lt;br /&gt;
            this-&amp;gt;button1-&amp;gt;Location = System::Drawing::Point(20, 7);&lt;br /&gt;
            this-&amp;gt;button1-&amp;gt;Name = L&amp;quot;button1&amp;quot;;&lt;br /&gt;
            this-&amp;gt;button1-&amp;gt;Size = System::Drawing::Size(75, 23);&lt;br /&gt;
            this-&amp;gt;button1-&amp;gt;TabIndex = 0;&lt;br /&gt;
            this-&amp;gt;button1-&amp;gt;Text = L&amp;quot;button 1&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // Leftpanel&lt;br /&gt;
            // &lt;br /&gt;
            this-&amp;gt;Leftpanel-&amp;gt;BorderStyle = &lt;br /&gt;
                System::Windows::Forms::BorderStyle::FixedSingle;&lt;br /&gt;
            this-&amp;gt;Leftpanel-&amp;gt;Controls-&amp;gt;Add(this-&amp;gt;bnHide);&lt;br /&gt;
            this-&amp;gt;Leftpanel-&amp;gt;Controls-&amp;gt;Add(this-&amp;gt;bnDisable);&lt;br /&gt;
            this-&amp;gt;Leftpanel-&amp;gt;Location = System::Drawing::Point(28, 22);&lt;br /&gt;
            this-&amp;gt;Leftpanel-&amp;gt;Name = L&amp;quot;Leftpanel&amp;quot;;&lt;br /&gt;
            this-&amp;gt;Leftpanel-&amp;gt;Size = System::Drawing::Size(120, 95);&lt;br /&gt;
            this-&amp;gt;Leftpanel-&amp;gt;TabIndex = 2;&lt;br /&gt;
            // &lt;br /&gt;
            // bnHide&lt;br /&gt;
            // &lt;br /&gt;
            this-&amp;gt;bnHide-&amp;gt;Location = System::Drawing::Point(17, 62);&lt;br /&gt;
            this-&amp;gt;bnHide-&amp;gt;Name = L&amp;quot;bnHide&amp;quot;;&lt;br /&gt;
            this-&amp;gt;bnHide-&amp;gt;Size = System::Drawing::Size(75, 23);&lt;br /&gt;
            this-&amp;gt;bnHide-&amp;gt;TabIndex = 1;&lt;br /&gt;
            this-&amp;gt;bnHide-&amp;gt;Text = L&amp;quot;Hide&amp;quot;;&lt;br /&gt;
            this-&amp;gt;bnHide-&amp;gt;Click += &lt;br /&gt;
                gcnew System::EventHandler(this, &amp;amp;Form1::bnHide_Click);&lt;br /&gt;
            // &lt;br /&gt;
            // bnDisable&lt;br /&gt;
            // &lt;br /&gt;
            this-&amp;gt;bnDisable-&amp;gt;Location = System::Drawing::Point(17, 7);&lt;br /&gt;
            this-&amp;gt;bnDisable-&amp;gt;Name = L&amp;quot;bnDisable&amp;quot;;&lt;br /&gt;
            this-&amp;gt;bnDisable-&amp;gt;Size = System::Drawing::Size(75, 23);&lt;br /&gt;
            this-&amp;gt;bnDisable-&amp;gt;TabIndex = 0;&lt;br /&gt;
            this-&amp;gt;bnDisable-&amp;gt;Text = L&amp;quot;Disable&amp;quot;;&lt;br /&gt;
            this-&amp;gt;bnDisable-&amp;gt;Click += &lt;br /&gt;
                gcnew System::EventHandler(this, &amp;amp;Form1::bnDisable_Click);&lt;br /&gt;
            // &lt;br /&gt;
            // Form1&lt;br /&gt;
            // &lt;br /&gt;
            this-&amp;gt;AutoScaleDimensions = System::Drawing::SizeF(6, 13);&lt;br /&gt;
            this-&amp;gt;AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;&lt;br /&gt;
            this-&amp;gt;ClientSize = System::Drawing::Size(310, 139);&lt;br /&gt;
            this-&amp;gt;Controls-&amp;gt;Add(this-&amp;gt;Rightpanel);&lt;br /&gt;
            this-&amp;gt;Controls-&amp;gt;Add(this-&amp;gt;Leftpanel);&lt;br /&gt;
            this-&amp;gt;Name = L&amp;quot;Form1&amp;quot;;&lt;br /&gt;
            this-&amp;gt;Text = L&amp;quot;A hidden fourth button&amp;quot;;&lt;br /&gt;
            this-&amp;gt;Rightpanel-&amp;gt;ResumeLayout(false);&lt;br /&gt;
            this-&amp;gt;Leftpanel-&amp;gt;ResumeLayout(false);&lt;br /&gt;
            this-&amp;gt;ResumeLayout(false);&lt;br /&gt;
    }&lt;br /&gt;
    private: &lt;br /&gt;
        System::Void bnDisable_Click(System::Object^ sender, System::EventArgs^ e)&lt;br /&gt;
        {&lt;br /&gt;
            Rightpanel-&amp;gt;Enabled = !Rightpanel-&amp;gt;Enabled;&lt;br /&gt;
        }&lt;br /&gt;
    private: &lt;br /&gt;
        System::Void bnHide_Click(System::Object^ sender, System::EventArgs^ e)&lt;br /&gt;
        {&lt;br /&gt;
            Rightpanel-&amp;gt;Visible = !Rightpanel-&amp;gt;Visible;&lt;br /&gt;
        }&lt;br /&gt;
  };&lt;br /&gt;
&lt;br /&gt;
[STAThreadAttribute]&lt;br /&gt;
int main(array&amp;lt;System::String ^&amp;gt; ^args)&lt;br /&gt;
{&lt;br /&gt;
  Application::Run(gcnew Form1());&lt;br /&gt;
  return 0;&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>