在vb.net中实现类似vb右边显示属性的功能。啊.

在vb.net中实现类似vb右边显示属性的功能。急急急!在线等啊...
我想在一个form中实现vb右边显示属性的那个表格的功能,同样分成2列,第一列为属性,第二列为所选择的这个属性的可选数值,由下拉框体现。请问高手,这个是怎么实现的啊。

------解决方案--------------------
比如:
下面的代码示例演示如何创建属性网格并设置它在窗体中的位置。本示例要求有一个含有 TextBox 的窗体。

public Form1() {

// The initial constructor code goes here.

PropertyGrid propertyGrid1 = new PropertyGrid();
propertyGrid1.CommandsVisibleIfAvailable = true;
propertyGrid1.Location = new Point(10, 20);
propertyGrid1.Size = new System.Drawing.Size(400, 300);
propertyGrid1.TabIndex = 1;
propertyGrid1.Text = "Property Grid ";

this.Controls.Add(propertyGrid1);

propertyGrid1.SelectedObject = textBox1;
}