目前,我正在抽象基类中生成 UserControl,如下所示,因此它们可用于实现基类的任何其他页面:
// doc is an XML file that may or may not contain a TopStrapline node
var pageControls = new {
TopStrapline = (from strap in doc.Elements("TopStrapline")
select new TopStrapline
{
StraplineText =
(string)strap.Attribute("text")
}).FirstOrDefault(),
// loads of other UserControls generated from other nodes
};
// if there's a StrapLine node, I want to make it available as a property
// in this base class. Any page that needs a TopStrapline can just add the base
// class's TopStrapline to a placeholder on the page.
if (pageControls.TopStrapline != null)
{
this.TopStrapline = GetTopStrapline(pageControls.TopStrapline);
}
private TopStrapline GetTopStrapline(TopStrapline strapline)
{
TopStrapline topStrapline = (TopStrapline)LoadControl("~/Path/TopStrapline.ascx");
topStrapline.StraplineText = strapline.StraplineText;
return topStrapline;
}
这段代码让我烦恼的是,我可以TopStrapline
使用 LinqToXML 创建一个实例,但它作为用户控件并不好,因为我需要使用LoadControl
. 这可行,但似乎有点笨拙。理想情况下,我可以LoadControl
直接在pageControls
匿名对象中执行,然后将该加载的控件分配给页面的属性。
这可能吗?任何人都可以提出更好的解决方案来解决这个问题吗?谢谢