为了创建一个应该在 ASP.NET 中使用的自定义数据源,我创建了一个自定义数据源类、一个自定义编辑器和一个自定义可序列化类。
我不明白为什么它不起作用......即使我可能有比要求更多的属性(我已经浏览和尝试了几个小时),但据我所知,PersistenceMode(PersistenceMode.InnerProperty)
应该做到这一点......另外,在我看来,我的代码类似于为什么我不能在 WebForm 中声明 UserControl 的子元素(属性)?.
该代码的工作原理如下:
[ParseChildren(true)]
[PersistChildren(true)]
public class MyDataSource : DataSourceControl
{
// [much more irrelevant code...]
[Browsable(true)]
[EditorBrowsable(EditorBrowsableState.Always)]
[PersistenceMode(PersistenceMode.InnerProperty)]
[MergableProperty(false)]
[TypeConverter(typeof(ExpandableObjectConverter))]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
[Editor(typeof(Editors.ResultRequestEditor), typeof(System.Drawing.Design.UITypeEditor))]
public ResultRequest Request { get; set; }
}
[Serializable]
[PersistChildren(true)]
[TypeConverter(typeof(ExpandableObjectConverter))]
[ParseChildren(true)]
public class ResultRequest
{
[Browsable(true)]
[EditorBrowsable(EditorBrowsableState.Always)]
public string ColumnName { get; set; }
[Browsable(true)]
[EditorBrowsable(EditorBrowsableState.Always)]
public Type ColumnType { get; set; }
[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Always)]
public object[] ResultTypeParameters { get; set; }
}
自定义编辑器似乎工作:使用它后,VS 中的属性正确更新。
但是,更新某些内容后,信息不会保留在 ASPX 文件中:
<cc1:MyDataSource ID="SearchDataSource1" runat="server" ProviderID="MyProvider1" />
我期望的是数据源中的一些序列化,例如:
<cc1:MyDataSource ID="SearchDataSource1" runat="server" ProviderID="MyProvider1">
<Request>
// blah
</Request>
</cc1:MyDataSource>
有人可以解释为什么这不起作用吗?