如何在 ASP.NET 中应用 Windows 应用程序主题
我有一个 winforms 我想在其中应用主题。是否可以?如果可能,请帮助我...我如何应用主题?
I have a winforms in which I want apply a Theme. Is it possible? If possible please help me...how do I apply the theme?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从msdn,
要创建页面主题,
如果 App_Themes 文件夹尚不存在,Visual Web Developer 将创建它。然后,Visual Web Developer 为主题创建一个新文件夹作为 App_Themes 文件夹的子文件夹。
该文件夹的名称也是页面主题的名称。例如,如果您创建名为 \App_Themes\FirstTheme 的文件夹,则主题的名称为 FirstTheme。
ASP.NET 2.0 中的主题快速浏览
From the msdn,
To create a page theme,
If the App_Themes folder does not already exist, Visual Web Developer creates it. Visual Web Developer then creates a new folder for the theme as a child folder of the App_Themes folder.
The name of this folder is also the name of the page theme. For example, if you create a folder named \App_Themes\FirstTheme, the name of your theme is FirstTheme.
A Quick Tour of Themes in ASP.NET 2.0