1

我在堆栈上看到了这篇文章,在 Silverlight MSDN 上看到了这篇文章,但它们没有解决 Silverlight5。请参阅下面的我的 html 主机文档 div 代码和调用它的 C# 代码。我得到一个“给定的键不在字典中”。每次都出错,并且.InitParams属性计数也每次都是0。有人知道解决方案吗?我觉得这是 Silverlight5 中的错误之类的。此外,如果有人有一种从主机 html 对象标签获取信息的干净替代方法 - 我也会接受。

标记:

<div id="silverlightControlHost">
        <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="400" height="300">
          <param name="source" value="ClientBin/MySilverlightApplication.xap"/>
          <param name="onError" value="onSilverlightError" />
          <param name="background" value="white" />
          <param name="minRuntimeVersion" value="5.0.61118.0" />
          <param name="autoUpgrade" value="true" />
          <param name="initParams" value="rootLocation=someLocation" />
          <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=5.0.61118.0" style="text-decoration:none">
              <img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/>
          </a>
        </object>
        <iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe>
   </div>

C# 从静态属性中检索:

private const String rootLocation= "rootLocation";

internal String RootLocation { 

    get
    {

        String location = App.Current.Host.InitParams[rootLocation];

        return location;

    }
}

AppStartUpC# 从事件中检索:

private const String rootLocation= "rootLocation";

private void Application_Startup(object sender, StartupEventArgs e)
{
    this.RootVisual = new MainPage();

    String location = e.InitParams[rootLocation];

}
4

1 回答 1

3

在将解决方案升级到 Silverlight 5 后,我遇到了同样的问题。结果发现,虽然 app.xaml 正在被调用,但 WEB 项目已经失去了它的“启动项目”状态。重置它会导致一切恢复正常。

于 2012-09-13T01:19:17.690 回答