Bagikan melalui


DesignerAutoFormatCollection Kelas

Definisi

Mewakili kumpulan DesignerAutoFormat objek dalam perancang kontrol. Kelas ini tidak dapat diwariskan.

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
Warisan
DesignerAutoFormatCollection
Penerapan

Contoh

Contoh kode berikut menunjukkan cara mengimplementasikan AutoFormats properti dalam perancang kontrol kustom. Perancang kontrol turunan mengimplementasikan AutoFormats properti dengan menambahkan tiga instans format otomatis kustom yang berasal dari DesignerAutoFormat kelas .

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

Keterangan

Kelas ControlDesigner dan kelas turunan apa pun mendefinisikan AutoFormats properti sebagai DesignerAutoFormatCollection objek. Pengembang kontrol dapat mengambil alih AutoFormats properti dalam perancang kontrol turunan, menambahkan gaya pemformatan otomatis kustom, dan mengembalikan kumpulan format yang didukung ke perancang visual.

Koleksi meningkat secara dinamis saat objek ditambahkan. Indeks dalam koleksi ini berbasis nol. Count Gunakan properti untuk menentukan berapa banyak format gaya otomatis dalam koleksi.

Selain itu, gunakan DesignerAutoFormatCollection metode dan properti untuk menyediakan fungsionalitas berikut:

  • Metode Add untuk menambahkan satu format ke koleksi.

  • Metode Insert untuk menambahkan format pada indeks tertentu dalam koleksi.

  • Metode Remove untuk menghapus format.

  • Metode RemoveAt untuk menghapus format pada indeks tertentu.

  • Metode Contains untuk menentukan apakah format tertentu sudah ada dalam koleksi.

  • Metode IndexOf untuk mengambil indeks format dalam koleksi.

  • Properti Item[] untuk mendapatkan atau mengatur format pada indeks tertentu, menggunakan notasi array.

  • Metode Clear untuk menghapus semua format dari koleksi.

  • Properti Count untuk menentukan jumlah format dalam koleksi.

  • Metode IndexOf untuk mendapatkan posisi format dalam koleksi.

Konstruktor

DesignerAutoFormatCollection()

Menginisialisasi instans baru kelas DesignerAutoFormatCollection.

Properti

Count

Mendapatkan jumlah DesignerAutoFormat objek dalam koleksi.

Item[Int32]

Mendapatkan atau mengatur DesignerAutoFormat objek pada indeks yang ditentukan dalam koleksi.

PreviewSize

Mendapatkan dimensi luar maksimum kontrol karena akan muncul pada durasi.

SyncRoot

Mendapatkan objek yang dapat digunakan untuk menyinkronkan akses ke DesignerAutoFormatCollection objek.

Metode

Add(DesignerAutoFormat)

Menambahkan objek yang ditentukan DesignerAutoFormat ke akhir koleksi.

Clear()

Menghapus semua format dari koleksi.

Contains(DesignerAutoFormat)

Menentukan apakah format yang ditentukan terkandung dalam koleksi.

Equals(Object)

Menentukan apakah objek yang ditentukan sama dengan objek saat ini.

(Diperoleh dari Object)
GetHashCode()

Berfungsi sebagai fungsi hash default.

(Diperoleh dari Object)
GetType()

Mendapatkan instans Type saat ini.

(Diperoleh dari Object)
IndexOf(DesignerAutoFormat)

Mengembalikan indeks objek yang ditentukan DesignerAutoFormat dalam koleksi.

Insert(Int32, DesignerAutoFormat)

DesignerAutoFormat Menyisipkan objek ke dalam koleksi pada indeks yang ditentukan.

MemberwiseClone()

Membuat salinan dangkal dari yang saat ini Object.

(Diperoleh dari Object)
Remove(DesignerAutoFormat)

Menghapus objek yang ditentukan DesignerAutoFormat dari koleksi.

RemoveAt(Int32)

DesignerAutoFormat Menghapus objek pada indeks yang ditentukan dalam koleksi.

ToString()

Mengembalikan string yang mewakili objek saat ini.

(Diperoleh dari Object)

Implementasi Antarmuka Eksplisit

ICollection.CopyTo(Array, Int32)

Menyalin elemen koleksi ke Array objek, dimulai pada indeks tertentu Array saat DesignerAutoFormatCollection objek ditransmisikkan ke ICollection antarmuka.

ICollection.Count

Mendapatkan jumlah elemen yang terkandung dalam koleksi saat DesignerAutoFormatCollection objek ditransmisikan ke ICollection antarmuka.

ICollection.IsSynchronized

Mendapatkan nilai yang menunjukkan apakah akses ke koleksi disinkronkan (utas aman) saat DesignerAutoFormatCollection objek dilemparkan ke ICollection antarmuka.

IEnumerable.GetEnumerator()

Mengembalikan IEnumerator antarmuka yang melakukan iterasi melalui koleksi saat objek dilemparkan DesignerAutoFormatCollection ke IEnumerable antarmuka.

IList.Add(Object)

Menambahkan item ke koleksi saat objek dilemparkan DesignerAutoFormatCollection ke IList antarmuka.

IList.Contains(Object)

Menentukan apakah koleksi berisi nilai tertentu saat objek dilemparkan DesignerAutoFormatCollection ke IList antarmuka.

IList.IndexOf(Object)

Menentukan indeks item tertentu dalam koleksi saat DesignerAutoFormatCollection objek ditransmisikan ke IList antarmuka.

IList.Insert(Int32, Object)

Menyisipkan item ke dalam koleksi pada indeks yang ditentukan ketika DesignerAutoFormatCollection objek ditransmisikan ke IList antarmuka.

IList.IsFixedSize

Mendapatkan nilai yang menunjukkan apakah koleksi memiliki ukuran tetap saat DesignerAutoFormatCollection objek ditransmisikan ke IList antarmuka.

IList.IsReadOnly

Untuk deskripsi metode ini, lihat IsReadOnly.

IList.Item[Int32]

Mendapatkan elemen pada indeks yang ditentukan saat DesignerAutoFormatCollection objek ditransmisikan ke IList antarmuka.

IList.Remove(Object)

Menghapus kemunculan pertama objek tertentu dari koleksi saat DesignerAutoFormatCollection objek dilemparkan ke IList antarmuka.

IList.RemoveAt(Int32)

Menghapus item pada indeks yang ditentukan saat DesignerAutoFormatCollection objek ditransmisikan ke IList antarmuka.

Metode Ekstensi

Cast<TResult>(IEnumerable)

Mentransmisikan elemen dari IEnumerable ke jenis yang ditentukan.

OfType<TResult>(IEnumerable)

Memfilter elemen berdasarkan IEnumerable jenis tertentu.

AsParallel(IEnumerable)

Mengaktifkan paralelisasi kueri.

AsQueryable(IEnumerable)

Mengonversi menjadi IEnumerableIQueryable.

Berlaku untuk

Lihat juga