主题不起作用
我设置了一个主题文件夹,里面有一个皮肤文件夹..里面有这个:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您会错过标签皮肤中的 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