ASP.NET GridView 的多个主题

发布于 2024-08-31 20:58:06 字数 139 浏览 4 评论 0原文

我有一个 ASP.NET 应用程序,其中有一个 GridView。我有 App_Theme 文件夹中存在的 GRidView 的外观文件和 CSS。现在我希望用户根据用户切换网格视图的样式(颜色和字体)我可以保留 App_Theme 文件夹以外的 CSS 文件吗?

I have an ASP.NET application inside which i have a GridView.I have Skin file and CSS for the GRidView Present inside the App_Theme folder.Now i want the user to switch the style(Colors and Font) for the Grid view based on user preference.Is there any way i can associate a purticular Theme folder to a Grid.Can i keep the CSS file other than the App_Theme Folder ?

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

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

发布评论

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

评论(1

╰つ倒转 2024-09-07 20:58:07

主题在主题级别起作用;您可以通过在 PreInit 事件中分配页面的主题属性来切换主题...

请查看:http://msdn.microsoft.com/en-us/library/tx35bd89.aspx

或者,您可以为 GridView 控件创建多个主题,并在 ASP.NET 中为其指定 SkinID主题。然后,您可以将 GridView 的 SkinID 更改为您要应用的主题。这仅适用于皮肤,CSS 不能以这种方式工作。

HTH。

Themes work at the theme level; you can switch themes by assigning the theme property of the page in the PreInit event...

Check this out: http://msdn.microsoft.com/en-us/library/tx35bd89.aspx

Alternatively, you could create multiple themes for a GridView control, and give it a SkinID within the ASP.NET theme. Then, you can change the SkinID for the GridView to the theme you want to apply. This would be for skins only, CSS doesn't work this way.

HTH.

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