您好,登錄后才能下訂單哦!
ASP.NET中怎么為子控件添加樣式,針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。
ASP.NET控件開(kāi)發(fā)基礎(chǔ)之為子控件添加樣式2.復(fù)合控件中樣式屬性實(shí)現(xiàn)(為子控件提供樣式)
Style類本身繼承IStateManager 接口,并實(shí)現(xiàn)了接口方法.在第五篇我們?cè)貙?xiě)CreateControlStyle方法,如下
protected override Style CreateControlStyle() { return new Style(ViewState); }
其初始化的時(shí)候即存儲(chǔ)樣式信息在視圖狀態(tài)中,而其自定義的樣式的狀態(tài)管理機(jī)制則跟上一篇非常的相似.你需要重寫(xiě)Control類的狀態(tài)管理的幾個(gè)方法來(lái)實(shí)現(xiàn)樣式的狀態(tài)管理.還是以登錄控件為例.
(1)先自定義樣式集合屬性
定義方法跟上一篇視圖狀態(tài)中的Address屬性很相似
如下代碼
#region 樣式屬性 [ Category("Styles"), DefaultValue(null), DesignerSerializationVisibility( DesignerSerializationVisibility.Content), PersistenceMode(PersistenceMode.InnerProperty), Description( "應(yīng)用于按鈕的樣式") ] 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( "應(yīng)用于文本框的樣式") ] public virtual Style TextBoxStyle { get { if (_textBoxStyle == null) { _textBoxStyle = new Style(); if (IsTrackingViewState) { ((IStateManager)_textBoxStyle).TrackViewState(); } } return _textBoxStyle; } } #endregion
(2)自定義視圖狀態(tài)管理
因?yàn)榇颂幎x了兩個(gè)樣式集合屬性,所以用到了Triplet這個(gè)輔助類,其跟Pair類一樣都是輔助類,而其可以存儲(chǔ)三個(gè)相關(guān)對(duì)象的基本結(jié)構(gòu).如果你要儲(chǔ)存三個(gè)以上就不能用這兩個(gè)輔助類了,實(shí)現(xiàn)方法還是很簡(jiǎn)單的.
如下代碼
#region 自定義視圖狀態(tài) 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)為子控件添加樣式集合屬性
上面工作做好后,然后你就可以在呈現(xiàn)方法Render方法或RenderContent方法中為子控件添加樣式集合屬性,如下代碼
if (_buttonStyle != null) { submitButton.ApplyStyle(ButtonStyle); } if (_textBoxStyle != null) { nameTextBox.ApplyStyle(TextBoxStyle); emailTextBox.ApplyStyle(TextBoxStyle); }
來(lái)看一下效果,屬性面板已經(jīng)有子控件樣式集合屬性了,這樣就更容易管理樣式了.
定義子控件樣式就這么的簡(jiǎn)單,主要難點(diǎn)還是在于自定義視圖狀態(tài)管理,對(duì)自定義視圖狀態(tài)管理熟悉的話,看到這里肯定很簡(jiǎn)單,如果沒(méi)看明白就須先弄懂如何自定義視圖狀態(tài)管理.
關(guān)于ASP.NET中怎么為子控件添加樣式問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。