如何在 ASP.NET 中的主题之间共享 .skin 主题文件?

发布于 2024-10-23 14:00:07 字数 109 浏览 2 评论 0原文

我们有一个带有多个 asp.net 主题的旧应用程序。每个主题都有一个 .skin 文件。除了某些内容之外,每个皮肤文件几乎都是相同的。这些文件有很多相似之处。是否可以跨主题共享通用的 .skin 文件?

We have a legacy app with multiple asp.net themes. Each theme have a .skin file. Each skin file is almost identical except for some things. The files share a lot of similarities. Is it possible to share a common .skin file across themes?

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

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

发布评论

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

评论(2

眼藏柔 2024-10-30 14:00:07

可以通过在某处创建基本主题皮肤文件,然后使用包含在特定主题皮肤文件中来实现。

例如,您可以在 baseTheme.skin 中定义所有控件并将其放在服务器上的某个位置。然后,在您的特定主题文件(theme.skin)中,您将包含回您的基础。

<!-- #include file="../themeBase.skin" -->

It is possible by creating a base theme skin file somewhere and then using an include in the specific theme skin files.

For instance, you would define all your controls in baseTheme.skin and put it somewhere on your server. Then, in your specific theme file (theme.skin), you would do an include back to your base.

<!-- #include file="../themeBase.skin" -->
水波映月 2024-10-30 14:00:07

不幸的是,这是不可能的,皮肤是根据设计包含在主题中的:

http://forums.asp .net/t/1268733.aspx/1

Unfortunately it's not possible, skins are by design contained within a theme:

http://forums.asp.net/t/1268733.aspx/1

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