DesignerAutoFormatCollection Třída

Definice

Představuje kolekci objektů v návrháři ovládacích DesignerAutoFormat prvků. Tuto třídu nelze zdědit.

public ref class DesignerAutoFormatCollection sealed : System::Collections::IList
public sealed class DesignerAutoFormatCollection : System.Collections.IList
type DesignerAutoFormatCollection = class
    interface IList
    interface ICollection
    interface IEnumerable
Public NotInheritable Class DesignerAutoFormatCollection
Implements IList
Dědičnost
DesignerAutoFormatCollection
Implementuje

Příklady

Následující příklad kódu ukazuje, jak implementovat AutoFormats vlastnost v návrháři vlastních ovládacích prvků. Odvozený návrhář ovládacích prvků implementuje AutoFormats vlastnost přidáním tří instancí vlastního automatického formátu odvozeného z DesignerAutoFormat třídy.

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Web.UI;
using System.Web.UI.Design;
using System.Web.UI.Design.WebControls;
using System.Web.UI.WebControls;

namespace CustomControls.Design.CS
{
    // A custom Label control whose contents can be indented
    [Designer(typeof(IndentLabelDesigner)), 
        ToolboxData("<{0}:IndentLabel Runat=\"server\"></{0}:IndentLabel>")]
    public class IndentLabel : Label
    {
        private int _indent = 0;

        // Property to indent all text within the label
        [Category("Appearance"), DefaultValue(0), 
            PersistenceMode(PersistenceMode.Attribute)]
        public int Indent
        {
            get { return _indent; }
            set
            {
                _indent = value;
                // Get the number of pixels to indent
                int ind = value * 8;

                //  Add the indent style to the control
                if (ind > 0)
                    this.Style.Add(HtmlTextWriterStyle.MarginLeft, ind.ToString() + "px");
                else
                    this.Style.Remove(HtmlTextWriterStyle.MarginLeft);
            }
        }
    }

    // A design-time ControlDesigner for the IndentLabel control
    [SupportsPreviewControl(true)]
    public class IndentLabelDesigner : LabelDesigner
    {
        private DesignerAutoFormatCollection _autoFormats = null;

        // The collection of AutoFormat objects for the IndentLabel object
        public override DesignerAutoFormatCollection AutoFormats
        {
            get
            {
                if (_autoFormats == null)
                {
                    // Create the collection
                    _autoFormats = new DesignerAutoFormatCollection();

                    // Create and add each AutoFormat object
                    _autoFormats.Add(new IndentLabelAutoFormat("MyClassic"));
                    _autoFormats.Add(new IndentLabelAutoFormat("MyBright"));
                    _autoFormats.Add(new IndentLabelAutoFormat("Default"));
                }
                return _autoFormats;
            }
        }

        // An AutoFormat object for the IndentLabel control
        private class IndentLabelAutoFormat : DesignerAutoFormat
        {
            public IndentLabelAutoFormat(string name) : base(name)
            { }

            // Applies styles based on the Name of the AutoFormat
            public override void Apply(Control inLabel)
            {
                if (inLabel is IndentLabel)
                {
                    IndentLabel ctl = (IndentLabel)inLabel;

                    // Apply formatting according to the Name
                    if (this.Name == "MyClassic")
                    {
                        // For MyClassic, apply style elements directly to the control
                        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")
                    {
                        // For MyBright, apply style elements to the Style property
                        this.Style.ForeColor = Color.Maroon;
                        this.Style.BackColor = Color.Yellow;
                        this.Style.Font.Size = FontUnit.Medium;

                        // Merge the AutoFormat style with the control's style
                        ctl.MergeStyle(this.Style);
                    }
                    else
                    {
                        // For the Default format, apply style elements to the control
                        ctl.ForeColor = Color.Black;
                        ctl.BackColor = Color.Empty;
                        ctl.Font.Size = FontUnit.XSmall;
                    }
                }
            }
        }
    }
}
Imports System.Drawing
Imports System.Collections
Imports System.ComponentModel
Imports System.Web.UI
Imports System.Web.UI.Design
Imports System.Web.UI.Design.WebControls
Imports System.Web.UI.WebControls

Namespace CustomControls.Design

    ' A custom Label control whose contents can be indented
    <Designer(GetType(IndentLabelDesigner)), _
        ToolboxData("<{0}:IndentLabel Runat=""server""></{0}:IndentLabel>")> _
    Public Class IndentLabel
        Inherits System.Web.UI.WebControls.Label

        Dim _indent As Integer = 0

        <Category("Appearance"), DefaultValue(0), _
            PersistenceMode(PersistenceMode.Attribute)> _
        Property Indent() As Integer
            Get
                Return _indent
            End Get
            Set(ByVal Value As Integer)
                _indent = Value

                ' Get the number of pixels to indent
                Dim ind As Integer = _indent * 8

                ' Add the indent style to the control
                If ind > 0 Then
                    Me.Style.Add(HtmlTextWriterStyle.MarginLeft, ind.ToString() & "px")
                Else
                    Me.Style.Remove(HtmlTextWriterStyle.MarginLeft)
                End If
            End Set
        End Property

    End Class

    ' A design-time ControlDesigner for the IndentLabel control
    Public Class IndentLabelDesigner
        Inherits LabelDesigner

        Private _autoFormats As DesignerAutoFormatCollection = Nothing
        ' The collection of AutoFormat objects for the IndentLabel object
        Public Overrides ReadOnly Property AutoFormats() As DesignerAutoFormatCollection
            Get
                If _autoFormats Is Nothing Then
                    ' Create the collection
                    _autoFormats = New DesignerAutoFormatCollection()

                    ' Create and add each AutoFormat object
                    _autoFormats.Add(New IndentLabelAutoFormat("MyClassic"))
                    _autoFormats.Add(New IndentLabelAutoFormat("MyBright"))
                    _autoFormats.Add(New IndentLabelAutoFormat("Default"))
                End If

                Return _autoFormats
            End Get
        End Property

        ' An AutoFormat object for the IndentLabel control
        Public Class IndentLabelAutoFormat
            Inherits DesignerAutoFormat

            Public Sub New(ByVal name As String)
                MyBase.New(name)
            End Sub

            ' Applies styles based on the Name of the AutoFormat
            Public Overrides Sub Apply(ByVal inLabel As Control)
                If TypeOf inLabel Is IndentLabel Then
                    Dim ctl As IndentLabel = CType(inLabel, IndentLabel)

                    ' Apply formatting according to the Name
                    If Me.Name.Equals("MyClassic") Then
                        ' For MyClassic, apply style elements directly to the control
                        ctl.ForeColor = Color.Gray
                        ctl.BackColor = Color.LightGray
                        ctl.Font.Size = FontUnit.XSmall
                        ctl.Font.Name = "Verdana,Geneva,Sans-Serif"
                    ElseIf Me.Name.Equals("MyBright") Then
                        ' For MyBright, apply style elements to the Style object
                        Me.Style.ForeColor = Color.Maroon
                        Me.Style.BackColor = Color.Yellow
                        Me.Style.Font.Size = FontUnit.Medium

                        ' Merge the AutoFormat style with the control's style
                        ctl.MergeStyle(Me.Style)
                    Else
                        ' For the Default format, apply style elements to the control
                        ctl.ForeColor = Color.Black
                        ctl.BackColor = Color.Empty
                        ctl.Font.Size = FontUnit.XSmall
                    End If
                End If
            End Sub
        End Class
    End Class

End Namespace

Poznámky

Třída ControlDesigner a jakákoli odvozená třída definuje AutoFormats vlastnost jako DesignerAutoFormatCollection objekt. Vývojáři ovládacích AutoFormats prvků mohou vlastnost přepsat v odvozené návrháři ovládacích prvků, přidat vlastní styly automatického formátování a vrátit kolekci podporovaných formátů vizuálnímu návrháři.

Při přidání objektů se kolekce dynamicky zvyšuje. Indexy v této kolekci jsou založené na nule. Count Pomocí vlastnosti určete, kolik automatických formátů stylu je v kolekci.

Kromě toho použijte DesignerAutoFormatCollection metody a vlastnosti k poskytování následujících funkcí:

  • Metoda Add pro přidání jednoho formátu do kolekce.

  • Metoda Insert přidání formátu v určitém indexu v kolekci.

  • Metoda Remove pro odebrání formátu.

  • Metoda RemoveAt pro odebrání formátu v určitém indexu.

  • Metoda Contains , která určuje, zda je konkrétní formát již v kolekci.

  • Metoda IndexOf pro načtení indexu formátu v kolekci.

  • Vlastnost Item[] pro získání nebo nastavení formátu v určitém indexu pomocí zápisu pole.

  • Metoda Clear pro odebrání všech formátů z kolekce.

  • Vlastnost Count pro určení počtu formátů v kolekci.

  • Metoda IndexOf pro získání pozice formátu v kolekci.

Konstruktory

DesignerAutoFormatCollection()

Inicializuje novou instanci DesignerAutoFormatCollection třídy.

Vlastnosti

Count

Získá počet DesignerAutoFormat objektů v kolekci.

Item[Int32]

Získá nebo nastaví DesignerAutoFormat objekt v zadaném indexu v kolekci.

PreviewSize

Získá maximální vnější rozměry ovládacího prvku, protože se zobrazí za běhu.

SyncRoot

Získá objekt, který lze použít k synchronizaci přístupu k objektu DesignerAutoFormatCollection .

Metody

Add(DesignerAutoFormat)

Přidá zadaný DesignerAutoFormat objekt na konec kolekce.

Clear()

Odebere všechny formáty z kolekce.

Contains(DesignerAutoFormat)

Určuje, zda je zadaný formát obsažen v kolekci.

Equals(Object)

Určí, zda se zadaný objekt rovná aktuálnímu objektu.

(Zděděno od Object)
GetHashCode()

Slouží jako výchozí funkce hash.

(Zděděno od Object)
GetType()

Type Získá aktuální instanci.

(Zděděno od Object)
IndexOf(DesignerAutoFormat)

Vrátí index zadaného DesignerAutoFormat objektu v kolekci.

Insert(Int32, DesignerAutoFormat)

DesignerAutoFormat Vloží objekt do kolekce v zadaném indexu.

MemberwiseClone()

Vytvoří použádnou kopii aktuálního souboru Object.

(Zděděno od Object)
Remove(DesignerAutoFormat)

Odebere zadaný DesignerAutoFormat objekt z kolekce.

RemoveAt(Int32)

Odebere DesignerAutoFormat objekt v zadaném indexu v kolekci.

ToString()

Vrátí řetězec, který představuje aktuální objekt.

(Zděděno od Object)

Explicitní implementace rozhraní

ICollection.CopyTo(Array, Int32)

Zkopíruje prvky kolekce do Array objektu, počínaje konkrétním Array indexem při přetypování objektu DesignerAutoFormatCollection ICollection do rozhraní.

ICollection.Count

Získá počet prvků, které jsou obsaženy v kolekci, když DesignerAutoFormatCollection je objekt přetypován do ICollection rozhraní.

ICollection.IsSynchronized

Získá hodnotu, která označuje, zda přístup k kolekci je synchronizován (thread safe) při DesignerAutoFormatCollection přetypování objektu ICollection do rozhraní.

IEnumerable.GetEnumerator()

IEnumerator Vrátí rozhraní, které prochází kolekcí při DesignerAutoFormatCollection přetypování objektu IEnumerable do rozhraní.

IList.Add(Object)

Přidá položku do kolekce při DesignerAutoFormatCollection přetypování objektu IList do rozhraní.

IList.Contains(Object)

Určuje, zda kolekce obsahuje konkrétní hodnotu při DesignerAutoFormatCollection přetypování objektu IList do rozhraní.

IList.IndexOf(Object)

Určuje index konkrétní položky v kolekci při DesignerAutoFormatCollection přetypování objektu IList do rozhraní.

IList.Insert(Int32, Object)

Vloží položku do kolekce v zadaném indexu při DesignerAutoFormatCollection přetypování objektu IList do rozhraní.

IList.IsFixedSize

Získá hodnotu, která označuje, zda kolekce má pevnou velikost při DesignerAutoFormatCollection přetypování objektu IList na rozhraní.

IList.IsReadOnly

Popis této metody naleznete v tématu IsReadOnly.

IList.Item[Int32]

Získá prvek v zadaném indexu DesignerAutoFormatCollection , když je objekt přetypován na IList rozhraní.

IList.Remove(Object)

Odebere první výskyt konkrétního objektu z kolekce při přetypování objektu DesignerAutoFormatCollection IList do rozhraní.

IList.RemoveAt(Int32)

Odebere položku v zadaném indexu při přetypování objektu DesignerAutoFormatCollection IList do rozhraní.

Metody rozšíření

Cast<TResult>(IEnumerable)

Přetypuje prvky zadaného IEnumerable typu.

OfType<TResult>(IEnumerable)

Filtruje prvky IEnumerable založené na zadaném typu.

AsParallel(IEnumerable)

Umožňuje paralelizaci dotazu.

AsQueryable(IEnumerable)

Převede na IEnumerable IQueryable.

Platí pro

Viz také