如何使用控件以编程方式设置 SkinID?

发布于 2024-11-19 05:17:44 字数 509 浏览 0 评论 0原文

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

我的皮肤文件:

我的代码背后:

 Label title;
void Page_PreInit(object sender, EventArgs e)
{
    title = new Label();
    title.SkinID = "Blue";
}

  protected void Page_Load(object sender, EventArgs e)
{
  title.Text = QuestionRequest;
        PlaceHolder2.Controls.Add(title);
}

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

My skin file:

My code behind:

 Label title;
void Page_PreInit(object sender, EventArgs e)
{
    title = new Label();
    title.SkinID = "Blue";
}

  protected void Page_Load(object sender, EventArgs e)
{
  title.Text = QuestionRequest;
        PlaceHolder2.Controls.Add(title);
}

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

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

发布评论

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

评论(2

棒棒糖 2024-11-26 05:17:44

将页面的 Theme 属性设置为“AnswerDesign”而不是 StyleSheetTheme 即可解决该问题。另外,请确保该主题包含蓝色皮肤。

更新
更改代码如下:

// 旧代码

... StylesheetTheme="AnswerDesign"%

// 新代码

... Theme="AnswerDesign"%

Set the page's Theme property to the "AnswerDesign" instead of StyleSheetTheme to resolve the problem. Also, make certain that this theme contains the Blue skin.

UPDATE
Change the code as follows:

// OLD CODE

... StylesheetTheme="AnswerDesign"%

// NEW CODE

... Theme="AnswerDesign"%
表情可笑 2024-11-26 05:17:44

据我了解,您已经添加了名为 Blue 的皮肤文件。这不是 SkinID。实际上,该文件可以具有任何名称,但如果您不想使用默认值,则必须在每个控件外观定义中设置 SkinID 属性值。您是否阅读了皮肤文件顶部自动生成的注释?

As I understand, you have add skin file named Blue. This is not the SkinID. Actually this file can have any name bu you must set SkinID property value in each control skin definition if you don't want to use the default. Did you read autogenerated comment at the top of skin file?

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