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);
          }
       }
    }
  • 相关阅读:
    数组协变性
    tomcat源码阅读23
    用枚举来实现单例模式
    CSS 的 zindex 属性
    屏幕大小与视区大小
    CSS 生成的模态窗口
    事件处理程序的绑定
    事件对象的属性和使用
    android打电话,接电话,挂电话过程
    ubuntu 12.04编译ics
  • 原文地址:https://www.cnblogs.com/shihao/p/2498687.html
Copyright © 2011-2022 走看看