zoukankan      html  css  js  c++  java
  • Building ASP.NET Server ControlsFancyLabel.cs

    // Title: Building ASP.NET Server Controls
    //
    // Chapter: 6 - Control Styles
    // File: FancyLabel.cs
    // Written by: Dale Michalk and Rob Cameron
    //
    // Copyright ?2003, Apress L.P.
    using System;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.ComponentModel;

    namespace ControlsBookLib.Ch06
    {
       [ToolboxData("<{0}:FancyLabel runat=server></{0}:FancyLabel>"),
       DefaultProperty("Text")]
       public class FancyLabel : WebControl
       {
          public FancyLabel() : base(HtmlTextWriterTag.Span)
          {
          }

          public CursorStyle Cursor
          {
             get
             {
                return ((FancyLabelStyle)ControlStyle).Cursor;
             }
             set
             {
                ((FancyLabelStyle)ControlStyle).Cursor = value;
             }
          }

          public virtual string Text
          {
             get
             {
                object text = ViewState["Text"];
                if (text == null)
                   return string.Empty;
                else
                   return (string) text;
             }
             set
             {
                ViewState["Text"] = value;
             }
          }

          protected override Style CreateControlStyle()
          {
             FancyLabelStyle style = new FancyLabelStyle(ViewState);
             return style;
          }

          override protected void RenderContents(HtmlTextWriter writer)
          {
             writer.Write(Text);
          }
       }
    }
  • 相关阅读:
    时钟同步
    通过 profiling 定位 golang 性能问题
    览器全面禁用三方 Cookie 全栈前端精选 4月16日
    为什么Go自带的日志默认输出到os.Stderr?
    gRPC Motivation and Design Principles | gRPC https://grpc.io/blog/principles/
    应用安全开发指南
    Hash Join: Basic Steps
    Building a high performance JSON parser
    阿姆达尔定律 Amdahl's law
    贝壳找房小程序平台架构演进
  • 原文地址:https://www.cnblogs.com/shihao/p/2498687.html
Copyright © 2011-2022 走看看