溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

ASP.NET控件設(shè)計(jì)時(shí)支持之自動(dòng)格式設(shè)置是如何實(shí)現(xiàn)的

發(fā)布時(shí)間:2021-12-03 11:02:47 來(lái)源:億速云 閱讀:127 作者:小新 欄目:編程語(yǔ)言

這篇文章給大家分享的是有關(guān)ASP.NET控件設(shè)計(jì)時(shí)支持之自動(dòng)格式設(shè)置是如何實(shí)現(xiàn)的的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

先看個(gè)圖

ASP.NET控件設(shè)計(jì)時(shí)支持之自動(dòng)格式設(shè)置是如何實(shí)現(xiàn)的

相信大家都很熟悉吧,我們可以用這個(gè)面板很方面的使用預(yù)定的樣式.我們可以稱(chēng)之為自動(dòng)格式設(shè)置或者自動(dòng)套用樣式.

ControlDesigner類(lèi)提供了AutoFormats屬性,其提供了DesignerAutoFormat類(lèi)的DesignerAutoFormatCollection集合.我們來(lái)看下相關(guān)的類(lèi).

ASP.NET控件設(shè)計(jì)時(shí)支持之自動(dòng)格式設(shè)置是如何實(shí)現(xiàn)的

ASP.NET控件設(shè)計(jì)時(shí)支持之自動(dòng)格式設(shè)置中DesignerAutoFormat 是一個(gè)基類(lèi),如果你想為你的控件在設(shè)計(jì)時(shí)提供格式化的功能,你可以從此類(lèi)派生,你必須實(shí)現(xiàn)Apply方法,此方法會(huì)將相關(guān)聯(lián)的控件設(shè)置樣式.由于實(shí)現(xiàn)比較簡(jiǎn)單就不再多多了,就直接拿MSDN的例子來(lái)看吧. 注意給 IndentLabelDesigner 加上SupportsPreviewControl元數(shù)據(jù),這樣可以支持預(yù)覽功能.

[Designer(typeof(IndentLabelDesigner)),        ToolboxData("﹤{0}:IndentLabel Runat=\"server\"﹥﹤/{0}:IndentLabel﹥")]    public class IndentLabel : Label    {        [SupportsPreviewControl(true)]        public class IndentLabelDesigner : LabelDesigner        {            private DesignerAutoFormatCollection _autoFormats = null;             public override DesignerAutoFormatCollection AutoFormats            {                get               {                    if (_autoFormats == null)                    {                        _autoFormats = new DesignerAutoFormatCollection();                        _autoFormats.Add(new IndentLabelAutoFormat("MyClassic"));                        _autoFormats.Add(new IndentLabelAutoFormat("MyBright"));                        _autoFormats.Add(new IndentLabelAutoFormat("Default"));                    }                    return _autoFormats;                }            }        }         private class IndentLabelAutoFormat : DesignerAutoFormat        {            public IndentLabelAutoFormat(string name)                : base(name)            { }             public override void Apply(Control inLabel)            {                if (inLabel is IndentLabel)                {                    IndentLabel ctl = (IndentLabel)inLabel;                                       if (this.Name == "MyClassic")                    {                                               ctl.ForeColor = Color.Gray;                        ctl.BackColor = Color.LightGray;                        ctl.Font.Size = FontUnit.XSmall;                        ctl.Font.Name = "Verdana,Geneva,Sans-Serif";                    }                    else if (this.Name == "MyBright")                    {                                               this.Style.ForeColor = Color.Maroon;                        this.Style.BackColor = Color.Yellow;                        this.Style.Font.Size = FontUnit.Medium;                        ctl.MergeStyle(this.Style);                    }                    else                   {                        ctl.ForeColor = Color.Black;                        ctl.BackColor = Color.Empty;                        ctl.Font.Size = FontUnit.XSmall;                    }                }            }        }    }

這么著效果就實(shí)現(xiàn)了,這次比較懶,沒(méi)好好寫(xiě),還想打算寫(xiě)別的,就先這樣吧.

感謝各位的閱讀!關(guān)于“ASP.NET控件設(shè)計(jì)時(shí)支持之自動(dòng)格式設(shè)置是如何實(shí)現(xiàn)的”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guā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)容。

AI