我正在尝试将 Type 属性添加到我的 WinForms 设计器中的某些控件。理想情况下,我希望它们使用 typeof(MyCompany.TheTypeIUsed) 进行序列化(类似于 BindingSource.DataSource 可以序列化的方式)。
撇开我没有为该类型指定设计器这一事实不谈,如果我添加一个使用“Type”的 IExtenderProvider,则该属性将不会出现在属性网格中。如果我使用 int 或 string 或任何其他类型,它工作正常。
这是 IExtenderProvider 实现中的错误还是需要额外的属性等?
[ProvideProperty("CommandType", typeof (Control))]
public class TypeExtender : Component, IExtenderProvider
{
private readonly Dictionary<Control, Type> controlCommands;
public TypeExtender()
{
controlCommands = new Dictionary<Control, Type>();
}
#region impl
bool IExtenderProvider.CanExtend(object target)
{
var control = target as Control;
if (control == null)
{
return false;
}
return true;
}
[DefaultValue(null)]
public Type GetCommandType(Control obj)
{
if (obj == null)
{
Debug.Fail("Non Control provided to Type getter");
return null;
}
Type commandType;
if (controlCommands.TryGetValue(obj, out commandType))
{
return commandType;
}
return null;
}
public void SetCommandType(Control obj, Type value)
{
if (obj == null)
{
Debug.Fail("Non control provided to Command Setter");
return;
}
if (value == null)
{
controlCommands.Remove(obj);
}
else
{
controlCommands[obj] = value;
}
}
[UsedImplicitly]
private bool ShouldSerializeCommand(object c)
{
var control = c as Control;
if (control == null)
{
return false;
}
Type type;
if (controlCommands.TryGetValue(control, out type))
{
return type != null;
}
return false;
}
[UsedImplicitly]
private void ResetCommand(object c)
{
if (c is Control)
{
controlCommands.Remove(c as Control);
}
}
#endregion
}