<?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%2FProperty_Grid</id>
		<title>Csharp/C Sharp/GUI Windows Form/Property Grid - История изменений</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%2FProperty_Grid"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/GUI_Windows_Form/Property_Grid&amp;action=history"/>
		<updated>2026-04-29T17:47:56Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp/GUI_Windows_Form/Property_Grid&amp;diff=32&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/Property_Grid&amp;diff=32&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/Property_Grid&amp;diff=33&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/Property_Grid&amp;diff=33&amp;oldid=prev"/>
				<updated>2010-05-26T11:32:38Z</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;==Directory tree and property grid==&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;
/*&lt;br /&gt;
User Interfaces in C#: Windows Forms and Custom Controls&lt;br /&gt;
by Matthew MacDonald&lt;br /&gt;
Publisher: Apress&lt;br /&gt;
ISBN: 1590590457&lt;br /&gt;
*/&lt;br /&gt;
using System;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
namespace DirectoryTreeHost&lt;br /&gt;
{&lt;br /&gt;
  /// &amp;lt;summary&amp;gt;&lt;br /&gt;
  /// Summary description for DirectoryTreeHost.&lt;br /&gt;
  /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
  public class DirectoryTreeHost : System.Windows.Forms.Form&lt;br /&gt;
  {&lt;br /&gt;
    private DirectoryTreeControl.DirectoryTree dirTree;&lt;br /&gt;
    private System.Windows.Forms.PropertyGrid propertyGrid1;&lt;br /&gt;
    /// &amp;lt;summary&amp;gt;&lt;br /&gt;
    /// Required designer variable.&lt;br /&gt;
    /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
    private System.ruponentModel.Container components = null;&lt;br /&gt;
    public DirectoryTreeHost()&lt;br /&gt;
    {&lt;br /&gt;
      //&lt;br /&gt;
      // Required for Windows Form Designer support&lt;br /&gt;
      //&lt;br /&gt;
      InitializeComponent();&lt;br /&gt;
      //&lt;br /&gt;
      // TODO: Add any constructor code after InitializeComponent call&lt;br /&gt;
      //&lt;br /&gt;
    }&lt;br /&gt;
    /// &amp;lt;summary&amp;gt;&lt;br /&gt;
    /// Clean up any resources being used.&lt;br /&gt;
    /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
    protected override void Dispose( bool disposing )&lt;br /&gt;
    {&lt;br /&gt;
      if( disposing )&lt;br /&gt;
      {&lt;br /&gt;
        if(components != null)&lt;br /&gt;
        {&lt;br /&gt;
          components.Dispose();&lt;br /&gt;
        }&lt;br /&gt;
      }&lt;br /&gt;
      base.Dispose( disposing );&lt;br /&gt;
    }&lt;br /&gt;
    #region Windows Form Designer generated code&lt;br /&gt;
    /// &amp;lt;summary&amp;gt;&lt;br /&gt;
    /// Required method for Designer support - do not modify&lt;br /&gt;
    /// the contents of this method with the code editor.&lt;br /&gt;
    /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
    private void InitializeComponent()&lt;br /&gt;
    {&lt;br /&gt;
      this.dirTree = new DirectoryTreeControl.DirectoryTree();&lt;br /&gt;
      this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();&lt;br /&gt;
      this.SuspendLayout();&lt;br /&gt;
      // &lt;br /&gt;
      // dirTree&lt;br /&gt;
      // &lt;br /&gt;
      this.dirTree.Drive = &amp;quot;C&amp;quot;;&lt;br /&gt;
      this.dirTree.ImageIndex = -1;&lt;br /&gt;
      this.dirTree.Location = new System.Drawing.Point(292, 12);&lt;br /&gt;
      this.dirTree.Name = &amp;quot;dirTree&amp;quot;;&lt;br /&gt;
      &lt;br /&gt;
      this.dirTree.SelectedImageIndex = -1;&lt;br /&gt;
      this.dirTree.Size = new System.Drawing.Size(276, 272);&lt;br /&gt;
      this.dirTree.TabIndex = 0;&lt;br /&gt;
      // &lt;br /&gt;
      // propertyGrid1&lt;br /&gt;
      // &lt;br /&gt;
      this.propertyGrid1.rumandsVisibleIfAvailable = true;&lt;br /&gt;
      this.propertyGrid1.LargeButtons = false;&lt;br /&gt;
      this.propertyGrid1.LineColor = System.Drawing.SystemColors.ScrollBar;&lt;br /&gt;
      this.propertyGrid1.Location = new System.Drawing.Point(12, 12);&lt;br /&gt;
      this.propertyGrid1.Name = &amp;quot;propertyGrid1&amp;quot;;&lt;br /&gt;
      this.propertyGrid1.SelectedObject = this.propertyGrid1;&lt;br /&gt;
      this.propertyGrid1.Size = new System.Drawing.Size(260, 272);&lt;br /&gt;
      this.propertyGrid1.TabIndex = 1;&lt;br /&gt;
      this.propertyGrid1.Text = &amp;quot;propertyGrid1&amp;quot;;&lt;br /&gt;
      this.propertyGrid1.ViewBackColor = System.Drawing.SystemColors.Window;&lt;br /&gt;
      this.propertyGrid1.ViewForeColor = System.Drawing.SystemColors.WindowText;&lt;br /&gt;
      // &lt;br /&gt;
      // DirectoryTreeHost&lt;br /&gt;
      // &lt;br /&gt;
      this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);&lt;br /&gt;
      this.ClientSize = new System.Drawing.Size(592, 298);&lt;br /&gt;
      this.Controls.AddRange(new System.Windows.Forms.Control[] {&lt;br /&gt;
                                      this.propertyGrid1,&lt;br /&gt;
                                      this.dirTree});&lt;br /&gt;
      this.Font = new System.Drawing.Font(&amp;quot;Tahoma&amp;quot;, 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));&lt;br /&gt;
      this.Name = &amp;quot;DirectoryTreeHost&amp;quot;;&lt;br /&gt;
      this.Text = &amp;quot;DirectoryTreeHost&amp;quot;;&lt;br /&gt;
      this.Load += new System.EventHandler(this.DirectoryTreeHost_Load);&lt;br /&gt;
      this.ResumeLayout(false);&lt;br /&gt;
    }&lt;br /&gt;
    #endregion&lt;br /&gt;
    private void DirectoryTreeHost_Load(object sender, System.EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
&lt;br /&gt;
    }&lt;br /&gt;
    public static void Main()&lt;br /&gt;
    {&lt;br /&gt;
      Application.Run(new DirectoryTreeHost());&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;A href=&amp;quot;http://www.nfex.ru/Code/CSharpDownload/DirectoryTreeHost.zip&amp;quot;&amp;gt;DirectoryTreeHost.zip( 66 k)&amp;lt;/a&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>