我在propertygrid中定義了item。我的代碼是在這裏:如何在c#中獲取propertygrid項目名稱,標籤和值?
[DisplayName("Title of book"), CategoryAttribute("Books")]
public string BookName{ get; set; }
有了這個代碼,我可以得到Labele從PropertyGrid的這個項目的價值(在這個例子中:標題書和它的值(例如)的學習C#) :
private void button1_Click(object sender, EventArgs e)
{
GridItem gi = propertyGrid1.SelectedGridItem;
while (gi.Parent != null)
{
gi = gi.Parent;
}
foreach (GridItem item in gi.GridItems)
{
ParseGridItems(item); //recursive
}
}
private void ParseGridItems(GridItem gi)
{
if (gi.GridItemType == GridItemType.Category)
{
foreach (GridItem item in gi.GridItems)
{
ParseGridItems(item);
}
}
textBox1.Text += "Lable : "+gi.Label + "\r\n";
if(gi.Value != null)
textBox1.Text += "Value : " + gi.Value.ToString() + "\r\n";
}
如何獲取項目名稱?在這個例子中:BOOKNAME
http://msdn.microsoft.com/en-us/library/kyaxdd3x.aspx –
我使用propertyGrid1.SelectedObject = myclass;將我的課程設置爲propertygrid項目。我如何訪問視覺propertygrid項目的值和名稱,沒有我的課程? –