Silverlight:如何在启动时不从 app.xaml 加载 MergedDictionaries?

发布于 2024-10-09 08:01:36 字数 336 浏览 3 评论 0原文

作为 Silverlight 加载资源方式的解决方法,我实现了此处发布的解决方案: Silverlight Shared MergedDictionaries

这工作正常,但必须在 app.xaml 中注释掉资源字典,这很烦人。我需要注释它们才能运行应用程序,但是取消注释它们可以让我获得设计视图。

我确信有一种方法可以让应用程序不加载这些内容,但我不是一个开发人员。有人可以给我指点教程或示例吗?一些谷歌搜索没有发现任何东西。谢谢!

As a workaround for the way Silverlight loads resources, I implemented the solution posted here:
Silverlight Shared MergedDictionaries

This works fine, but it's annoying having to comment out the resource dictionaries in the app.xaml. I need to comment them to run the app, but uncommenting them lets me get a design view.

I am sure there's a way to get the app to not load these, but I'm not much of a dev. Can somebody point me to a tutorial or example? Some googling hasn't turned up anything. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只等公子 2024-10-16 08:01:36

我找到了一个简单的答案:在App()中注释掉InitializeComponent。

查看 App.gics 中的代码:

        public void InitializeComponent() {
        if (_contentLoaded) {
            return;
        }
        _contentLoaded = true;
        System.Windows.Application.LoadComponent(this, new System.Uri("/SLPortalResources;component/App.xaml", System.UriKind.Relative));
    }

由于这只是加载 app.xaml 中的内容,因此将其注释掉是有效的:应用程序运行并且您将获得设计视图。

这样做有什么问题吗?

I found a simple answer: comment out InitializeComponent in App().

Looking at the code in App.g.i.cs:

        public void InitializeComponent() {
        if (_contentLoaded) {
            return;
        }
        _contentLoaded = true;
        System.Windows.Application.LoadComponent(this, new System.Uri("/SLPortalResources;component/App.xaml", System.UriKind.Relative));
    }

Since this just loads what's in app.xaml, commenting it out works: the app runs and you get a design view.

Is there anything wrong with doing this?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文