主题不起作用

发布于 2024-11-19 13:39:36 字数 577 浏览 3 评论 0原文

我设置了一个主题文件夹,里面有一个皮肤文件夹..里面有这个:

<asp:Label Runat="server" Font-Size="Large" Font-Bold="True" Font-Italic="True"/>

我的页面指令:

<%@ Page Title="" Language="C#" MasterPageFile="~/YourGuruMaster.master" AutoEventWireup="true" CodeFile="AnswerQuestion.aspx.cs" Inherits="AnswerQuestion" StylesheetTheme="AnswerDesign"%>

我自动设置标签的代码:

        Label title = new Label();
    title.SkinID = "Blue";
    title.Text = QuestionRequest;
    PlaceHolder2.Controls.Add(title);

I set a theme folder with a skin folder in it.. with this inside:

<asp:Label Runat="server" Font-Size="Large" Font-Bold="True" Font-Italic="True"/>

My page directive:

<%@ Page Title="" Language="C#" MasterPageFile="~/YourGuruMaster.master" AutoEventWireup="true" CodeFile="AnswerQuestion.aspx.cs" Inherits="AnswerQuestion" StylesheetTheme="AnswerDesign"%>

The code behind where i set the label automatically:

        Label title = new Label();
    title.SkinID = "Blue";
    title.Text = QuestionRequest;
    PlaceHolder2.Controls.Add(title);

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

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

发布评论

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

评论(1

怪我入戏太深 2024-11-26 13:39:36

首先,您会错过标签皮肤中的 SkinID 属性。当您动态添加标签时,使用主题页面的指令属性而不是样式表主题。

请点击此链接以澄清为什么在这种情况下必须使用 Theme 属性: Page.StyleSheetTheme 属性

At the first you are miss the SkinID property in label skin. And as you add label dynamically use Theme Page's directive attribute instead of the StylesheetTheme.

Follow this link for clarification why you must use Theme property in this case: Page.StyleSheetTheme Property

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