現在、抽象基本クラスで次のように UserControls を生成しているため、基本クラスを実装する他のページで使用できます。
// 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
その読み込まれたコントロールをページのプロパティに割り当てることができます。
これは可能ですか?誰でもこの問題のより良い解決策を提案できますか? ありがとう