DesignerAutoFormatCollection Klasa

Definicja

Reprezentuje kolekcję DesignerAutoFormat obiektów w projektancie kontrolek. Klasa ta nie może być dziedziczona.

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
Dziedziczenie
DesignerAutoFormatCollection
Implementuje

Przykłady

W poniższym przykładzie kodu pokazano, jak zaimplementować AutoFormats właściwość w niestandardowym projektancie kontrolek. Pochodny projektant kontrolek implementuje AutoFormats właściwość przez dodanie trzech wystąpień niestandardowego formatu automatycznego, które pochodzą z DesignerAutoFormat klasy.

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

Uwagi

Klasa i dowolna ControlDesigner klasa pochodna definiuje AutoFormats właściwość jako DesignerAutoFormatCollection obiekt. Deweloperzy kontroli mogą zastąpić właściwość w projektancie AutoFormats pochodnych kontrolek, dodać niestandardowe style automatycznego formatowania i zwrócić kolekcję obsługiwanych formatów do projektanta wizualizacji.

Kolekcja dynamicznie zwiększa się w miarę dodawania obiektów. Indeksy w tej kolekcji są oparte na zera. Użyj właściwości , Count aby określić, ile automatycznych formatów stylów znajduje się w kolekcji.

Ponadto użyj DesignerAutoFormatCollection metod i właściwości, aby zapewnić następujące funkcje:

  • Metoda Add dodawania pojedynczego formatu do kolekcji.

  • Metoda Insert dodawania formatu w określonym indeksie w kolekcji.

  • Metoda Remove usuwania formatu.

  • Metoda RemoveAt usuwania formatu w określonym indeksie.

  • Metoda określania Contains , czy określony format znajduje się już w kolekcji.

  • Metoda IndexOf pobierania indeksu formatu w kolekcji.

  • Właściwość Item[] do pobierania lub ustawiania formatu w określonym indeksie przy użyciu notacji tablicy.

  • Metoda Clear usuwania wszystkich formatów z kolekcji.

  • Właściwość Count określająca liczbę formatów w kolekcji.

  • Metoda IndexOf pobierania pozycji formatu w kolekcji.

Konstruktory

DesignerAutoFormatCollection()

Inicjuje nowe wystąpienie klasy DesignerAutoFormatCollection.

Właściwości

Count

Pobiera liczbę DesignerAutoFormat obiektów w kolekcji.

Item[Int32]

Pobiera lub ustawia DesignerAutoFormat obiekt w określonym indeksie w kolekcji.

PreviewSize

Pobiera maksymalne zewnętrzne wymiary kontrolki, ponieważ będą wyświetlane w czasie wykonywania.

SyncRoot

Pobiera obiekt, który może służyć do synchronizowania dostępu do DesignerAutoFormatCollection obiektu.

Metody

Add(DesignerAutoFormat)

Dodaje określony DesignerAutoFormat obiekt na końcu kolekcji.

Clear()

Usuwa wszystkie formaty z kolekcji.

Contains(DesignerAutoFormat)

Określa, czy określony format jest zawarty w kolekcji.

Equals(Object)

Określa, czy dany obiekt jest taki sam, jak bieżący obiekt.

(Odziedziczone po Object)
GetHashCode()

Służy jako domyślna funkcja skrótu.

(Odziedziczone po Object)
GetType()

Type Pobiera wartość bieżącego wystąpienia.

(Odziedziczone po Object)
IndexOf(DesignerAutoFormat)

Zwraca indeks określonego DesignerAutoFormat obiektu w kolekcji.

Insert(Int32, DesignerAutoFormat)

DesignerAutoFormat Wstawia obiekt do kolekcji w określonym indeksie.

MemberwiseClone()

Tworzy płytkią kopię bieżącego Objectelementu .

(Odziedziczone po Object)
Remove(DesignerAutoFormat)

Usuwa określony DesignerAutoFormat obiekt z kolekcji.

RemoveAt(Int32)

DesignerAutoFormat Usuwa obiekt w określonym indeksie w kolekcji.

ToString()

Zwraca ciąg reprezentujący bieżący obiekt.

(Odziedziczone po Object)

Jawne implementacje interfejsu

ICollection.CopyTo(Array, Int32)

Kopiuje elementy kolekcji do Array obiektu, zaczynając od określonego Array indeksu DesignerAutoFormatCollection , gdy obiekt jest rzutowy do interfejsu ICollection .

ICollection.Count

Pobiera liczbę elementów zawartych w kolekcji podczas DesignerAutoFormatCollection rzutowania obiektu do interfejsu ICollection .

ICollection.IsSynchronized

Pobiera wartość wskazującą, czy dostęp do kolekcji jest synchronizowany (bezpieczny wątek), gdy DesignerAutoFormatCollection obiekt jest rzutowany do interfejsu ICollection .

IEnumerable.GetEnumerator()

IEnumerator Zwraca interfejs, który iteruje przez kolekcję, gdy DesignerAutoFormatCollection obiekt jest rzutowy do interfejsuIEnumerable.

IList.Add(Object)

Dodaje element do kolekcji, gdy DesignerAutoFormatCollection obiekt jest rzutowy do interfejsu IList .

IList.Contains(Object)

Określa, czy kolekcja zawiera określoną wartość podczas DesignerAutoFormatCollection rzutowania obiektu do interfejsu IList .

IList.IndexOf(Object)

Określa indeks określonego elementu w kolekcji, gdy DesignerAutoFormatCollection obiekt jest rzutowy do interfejsu IList .

IList.Insert(Int32, Object)

Wstawia element do kolekcji w określonym indeksie, gdy DesignerAutoFormatCollection obiekt jest rzutowy do interfejsu IList .

IList.IsFixedSize

Pobiera wartość wskazującą, czy kolekcja ma stały rozmiar podczas DesignerAutoFormatCollection rzutowania obiektu do interfejsu IList .

IList.IsReadOnly

Opis tej metody można znaleźć w temacie IsReadOnly.

IList.Item[Int32]

Pobiera element w określonym indeksie, gdy DesignerAutoFormatCollection obiekt jest rzutowy do interfejsu IList .

IList.Remove(Object)

Usuwa pierwsze wystąpienie określonego obiektu z kolekcji, gdy DesignerAutoFormatCollection obiekt jest rzutowy do interfejsu IList .

IList.RemoveAt(Int32)

Usuwa element w określonym indeksie, gdy DesignerAutoFormatCollection obiekt jest rzutowy do interfejsu IList .

Metody rozszerzania

Cast<TResult>(IEnumerable)

Rzutuje elementy elementu IEnumerable na określony typ.

OfType<TResult>(IEnumerable)

Filtruje elementy IEnumerable elementu na podstawie określonego typu.

AsParallel(IEnumerable)

Umożliwia równoległość zapytania.

AsQueryable(IEnumerable)

Konwertuje element IEnumerable na .IQueryable

Dotyczy

Zobacz też