0

現在、抽象基本クラスで次のように 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その読み込まれたコントロールをページのプロパティに割り当てることができます。

これは可能ですか?誰でもこの問題のより良い解決策を提案できますか? ありがとう

4

1 に答える 1

1

これはあなたのために働きますか?

this.TopStrapline = doc.Elements("TopStrapline")
  .Select(e => {
      var control = (TopStrapline)LoadControl("~/Path/TropStrapLine.ascx");
      control.StraplineText = e.Attribute("text");

      return control;
  }).FirstOrDefault();
于 2010-06-10T15:26:18.490 に答える