91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ASP.NET中怎么為子控件添加樣式

發布時間:2021-07-15 15:42:31 來源:億速云 閱讀:126 作者:Leah 欄目:編程語言

ASP.NET中怎么為子控件添加樣式,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

ASP.NET控件開發基礎之為子控件添加樣式2.復合控件中樣式屬性實現(為子控件提供樣式)

Style類本身繼承IStateManager 接口,并實現了接口方法.在第五篇我們曾重寫CreateControlStyle方法,如下

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

其初始化的時候即存儲樣式信息在視圖狀態中,而其自定義的樣式的狀態管理機制則跟上一篇非常的相似.你需要重寫Control類的狀態管理的幾個方法來實現樣式的狀態管理.還是以登錄控件為例.

(1)先自定義樣式集合屬性

定義方法跟上一篇視圖狀態中的Address屬性很相似

如下代碼

#region 樣式屬性        [        Category("Styles"),        DefaultValue(null),        DesignerSerializationVisibility(            DesignerSerializationVisibility.Content),        PersistenceMode(PersistenceMode.InnerProperty),        Description(            "應用于按鈕的樣式")        ]        public virtual Style ButtonStyle        {            get           {                if (_buttonStyle == null)                {                    _buttonStyle = new Style();                    if (IsTrackingViewState)                    {                        ((IStateManager)_buttonStyle).TrackViewState();                    }                }                return _buttonStyle;            }        }         [        Category("Styles"),        DefaultValue(null),        DesignerSerializationVisibility(            DesignerSerializationVisibility.Content),        PersistenceMode(PersistenceMode.InnerProperty),        Description(            "應用于文本框的樣式")        ]        public virtual Style TextBoxStyle        {            get           {                if (_textBoxStyle == null)                {                    _textBoxStyle = new Style();                    if (IsTrackingViewState)                    {                        ((IStateManager)_textBoxStyle).TrackViewState();                    }                }                return _textBoxStyle;            }        }        #endregion

(2)自定義視圖狀態管理

因為此處定義了兩個樣式集合屬性,所以用到了Triplet這個輔助類,其跟Pair類一樣都是輔助類,而其可以存儲三個相關對象的基本結構.如果你要儲存三個以上就不能用這兩個輔助類了,實現方法還是很簡單的.

如下代碼

#region 自定義視圖狀態   protected override void LoadViewState(object savedState)   {       if (savedState == null)       {           base.LoadViewState(null);           return;       }       else      {           Triplet t = savedState as Triplet;            if (t != null)           {               base.LoadViewState(t.First);                if ((t.Second) != null)               {                   ((IStateManager)ButtonStyle).LoadViewState(t.Second);               }                if ((t.Third) != null)               {                   ((IStateManager)TextBoxStyle).LoadViewState(t.Third);               }           }           else          {               throw new ArgumentException("Invalid view state .");           }       }   }    protected override object SaveViewState()   {       object baseState = base.SaveViewState();       object buttonStyleState = null;       object textBoxStyleState = null;        if (_buttonStyle != null)       {           buttonStyleState =               ((IStateManager)_buttonStyle).SaveViewState();       }        if (_textBoxStyle != null)       {           textBoxStyleState =               ((IStateManager)_textBoxStyle).SaveViewState();       }        return new Triplet(baseState,           buttonStyleState, textBoxStyleState);    }    protected override void TrackViewState()   {       base.TrackViewState();       if (_buttonStyle != null)       {           ((IStateManager)_buttonStyle).TrackViewState();       }       if (_textBoxStyle != null)       {           ((IStateManager)_textBoxStyle).TrackViewState();       }   }   #endregion

(3)為子控件添加樣式集合屬性

上面工作做好后,然后你就可以在呈現方法Render方法或RenderContent方法中為子控件添加樣式集合屬性,如下代碼

if (_buttonStyle != null)              {                  submitButton.ApplyStyle(ButtonStyle);              }               if (_textBoxStyle != null)              {                  nameTextBox.ApplyStyle(TextBoxStyle);                  emailTextBox.ApplyStyle(TextBoxStyle);              }

來看一下效果,屬性面板已經有子控件樣式集合屬性了,這樣就更容易管理樣式了.

ASP.NET中怎么為子控件添加樣式

定義子控件樣式就這么的簡單,主要難點還是在于自定義視圖狀態管理,對自定義視圖狀態管理熟悉的話,看到這里肯定很簡單,如果沒看明白就須先弄懂如何自定義視圖狀態管理.

關于ASP.NET中怎么為子控件添加樣式問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

万源市| 白玉县| 嘉黎县| 吴桥县| 永泰县| 海晏县| 汕尾市| 广宗县| 蒙山县| 岳普湖县| 临邑县| 会泽县| 故城县| 克什克腾旗| 商水县| 张家界市| 区。| 清涧县| 正安县| 齐河县| 辰溪县| 句容市| 博客| 石阡县| 辽阳县| 资讯| 旅游| 盱眙县| 隆尧县| 甘孜县| 清苑县| 卢氏县| 大宁县| 扶沟县| 白玉县| 晋州市| 永定县| 宜宾县| 耿马| 伊金霍洛旗| 大足县|