如何在 ASP.NET 中应用 Windows 应用程序主题

发布于 2024-11-19 00:03:22 字数 73 浏览 2 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

潇烟暮雨 2024-11-26 00:03:22

msdn

要创建页面主题,

  1. 在解决方案资源管理器中,右键- 单击要为其创建页面主题的网站的名称,然后单击“添加 ASP.NET 文件夹”。
  2. 单击主题。
    如果 App_Themes 文件夹尚不存在,Visual Web Developer 将创建它。然后,Visual Web Developer 为主题创建一个新文件夹作为 App_Themes 文件夹的子文件夹。
  3. 输入新文件夹的名称。
    该文件夹的名称也是页面主题的名称。例如,如果您创建名为 \App_Themes\FirstTheme 的文件夹,则主题的名称为 FirstTheme。
  4. 将文件添加到新文件夹中,以获取构成主题的控件外观、样式表和图像。

ASP.NET 2.0 中的主题快速浏览

From the msdn,

To create a page theme,

  1. In Solution Explorer, right-click the name of the Web site for which you want to create a page theme, and then click Add ASP.NET Folder.
  2. Click 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.
  3. Type a name for the new 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.
  4. Add files to your new folder for control skins, style sheets, and images that make up the theme.

A Quick Tour of Themes in ASP.NET 2.0

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