将CSS样式添加到样式对象ASP Net



我以这种方式与[样式]类合作:

public class ServerControl1 : System.Web.UI.Control
{
    ....
    protected override void OnPreRender(EventArgs e)
    {
      Style wrapperStyle = new Style();
      wrapperStyle.BorderColor = BorderColor;
      ....
      ....
      this.Page.Header.StyleSheet.CreateStyleRule(wrapperStyle, null, key);
      .....
     }
}

如何添加[线路高度]或其他?

之类的东西
wrapperStyle.Attributes.Add("class","wrapper_class");

在您的CSS文件中

.wrapper_class {
    line-height:24px;
}

编辑:

wrapperStyle.Style.Add("line-height","24px");

相关内容

  • 没有找到相关文章

最新更新