svn path=/trunk/winforms/; revision=39668
This commit is contained in:
Peter Dennis Bartok 2005-01-27 23:01:14 +00:00
Родитель 14246338e6
Коммит 0de32b5c67
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -20,14 +20,15 @@ namespace MWFTestApplication {
textbox.Location = new Point(0, 0);
textbox.Width = this.Width;
textbox.TabIndex = 1;
this.Controls.Add(textbox);
propertygrid = new PropertyGrid();
propertygrid.CommandsVisibleIfAvailable = true;
propertygrid.Location = new Point(0, textbox.PreferredHeight + 10);
propertygrid.Size = new System.Drawing.Size(this.ClientSize.Width, 300);
propertygrid.TabIndex = 1;
propertygrid.Dock = DockStyle.Fill;
propertygrid.TabIndex = 2;
propertygrid.Text = "Property Grid";
this.Controls.Add(propertygrid);