あらゆる方法で実行時にプロパティ グリッドを変更するにはどうすればよいですか? プロパティを追加および削除し、「動的タイプ」を追加できるようにしたいと考えています。これは、TypeConverter を使用して、プロパティ グリッドで実行時にドロップダウンを生成するタイプを意味します。
私は実際に両方のこと(プロパティの追加/削除と動的タイプの追加)を行うことができましたが、同時にではなく別々に行うことができました。
実行時にプロパティを追加および削除するサポートを実装するために、この codeproject 記事を使用し、コードを少し変更して、さまざまな型 (文字列だけでなく) をサポートしました。
private System.Windows.Forms.PropertyGrid propertyGrid1;
private CustomClass myProperties = new CustomClass();
public Form1()
{
InitializeComponent();
myProperties.Add(new CustomProperty("Name", "Sven", typeof(string), false, true));
myProperties.Add(new CustomProperty("MyBool", "True", typeof(bool), false, true));
myProperties.Add(new CustomProperty("CaptionPosition", "Top", typeof(CaptionPosition), false, true));
myProperties.Add(new CustomProperty("Custom", "", typeof(StatesList), false, true)); //<-- doesn't work
}
/// <summary>
/// CustomClass (Which is binding to property grid)
/// </summary>
public class CustomClass: CollectionBase,ICustomTypeDescriptor
{
/// <summary>
/// Add CustomProperty to Collectionbase List
/// </summary>
/// <param name="Value"></param>
public void Add(CustomProperty Value)
{
base.List.Add(Value);
}
/// <summary>
/// Remove item from List
/// </summary>
/// <param name="Name"></param>
public void Remove(string Name)
{
foreach(CustomProperty prop in base.List)
{
if(prop.Name == Name)
{
base.List.Remove(prop);
return;
}
}
}
等...
public enum CaptionPosition
{
Top,
Left
}
私の完全なソリューションは、ここからダウンロードできます。
文字列、ブール値、または列挙型を追加すると正常に機能しますが、StatesList のような「動的型」を追加しようとすると機能しません。誰かが理由を知っていて、それを解決するのを手伝ってくれますか?
public class StatesList : System.ComponentModel.StringConverter
{
private string[] _States = { "Alabama", "Alaska", "Arizona", "Arkansas" };
public override System.ComponentModel.TypeConverter.StandardValuesCollection
GetStandardValues(ITypeDescriptorContext context)
{
return new StandardValuesCollection(_States);
}
public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
{
return true;
}
public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
{
return true;
}
}
TypeConverter を使用する方法は、実行時にプロパティを追加しようとしない場合にうまく機能します。たとえば、このコードは問題なく動作しますが、両方を実行できるようにしたいです。
私のプロジェクトを見てください。ありがとう!