我將使用PropertyGrid顯示我的對象。這是info類。 Info類具有一些由類類型組成的屬性。但是,子類不顯示屬性。你有什麼主意嗎? 代碼段: using System.ComponentModel;
using System.Windows.Forms;
namespace WindowsFormsApplication_propertyGrid
{
public pa
爲什麼在世界上,下列屬性只能在PropertyGrid中只讀出現? Public Property Location() As PointF
Get
Return New PointF(mLeft, mTop)
End Get
Set(ByVal value As PointF)
mLeft = value.X
mTop = val
我無法將uint的顯示屬性轉換爲string格式的PropertyGrid控件。這是我做的: var fruits = new SortedDictionary<uint, string>
{
{0, "Apple"},
{1, "Orange"},
{3, "Watermelon"},
};
public class FruitConverter : Str
我正在尋找一個屬性編輯器的一個例子是這樣一個屬性列表: public class ContainerClass
{
public string ContainerName { get; set; }
public List<ContainerBase> Containers { get; set; }
public ContainerClasss()
{
我遇到轉換類型問題。我的mainForm保持整型變量。此外,我的表單還有propertyGrid,其中我通過圖像&文本實現了字段屬性(如組合框)。現在我不太明白,我怎樣才能將一種類型轉換爲另一種類型。首先,我需要將int數據轉換爲myProp,反之亦然。 這裏設置的PropertyGrid: public dashPatternList DashPattern
{
get {
我想在PropertyGrid中實現自動完成字符串字段,可以將其設置爲自定義值。 這裏是我的字符串轉換 public class EntityNameAutocompleteConverter : StringConverter
{
public override bool GetStandardValuesSupported(ITypeDescriptorContext contex
我的工作是需要將數據從數據庫到屬性網格的應用程序,並運行正常,應該能夠編輯該數據庫。 這是我班的一個小樣機: public partial class MonthlyData
{
public MonthlyData(string month, string year)
{
this.key = string.Format("{0} {1}", month, ye