DesignerAutoFormat Klas
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Biedt de abstracte basisklasse voor het maken van indelingen die tijdens het ontwerp kunnen worden toegepast op een aangepast webserverbeheer.
public ref class DesignerAutoFormat abstract
public abstract class DesignerAutoFormat
type DesignerAutoFormat = class
Public MustInherit Class DesignerAutoFormat
- Overname
-
DesignerAutoFormat
Voorbeelden
In het volgende codevoorbeeld ziet u hoe u automatische opmaak implementeert in een aangepaste ontwerpfunctie voor besturingselementen. De afgeleide ontwerpfunctie voor besturingselementen implementeert de AutoFormats eigenschap door drie exemplaren toe te voegen van een aangepaste automatische indeling die is afgeleid van de DesignerAutoFormat klasse.
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
Opmerkingen
DesignerAutoFormat biedt een basisklasse die kan worden overgenomen van en uitgebreid om een opgemaakt aangepast webserverbeheer op het moment van ontwerpen weer te geven in een hulpprogramma voor visuele ontwerper, zoals Visual Studio 2005.
Een besturingselementontwikkelaar biedt automatische opmaak om ontwikkelaars te helpen die het besturingselement gebruiken om een voorkeursweergave te selecteren. Een aangepast object werkt met een ontwerpfunctie voor aangepaste DesignerAutoFormat besturingselementen om automatische opmaak te bieden tijdens het ontwerp voor een aangepast besturingselement. Het besturingselement biedt bijvoorbeeld Calendar verschillende indelingen die tijdens het ontwerp door een ontwikkelaar kunnen worden toegepast.
Automatische opmaak implementeren voor een aangepast besturingselement:
Maak het aangepaste besturingselement.
Een ontwerperklasse afleiden van de ControlDesigner klasse of een andere ontwerperklasse die geschikt is voor uw controle, zoals de TextControlDesigner.
Leid een indelingsklasse af van de DesignerAutoFormat klasse waarmee uw aangepaste controle wordt opgemaakt door de Apply methode te overschrijven.
Vul in de ontwerpfunctieklasse de AutoFormats eigenschap, een DesignerAutoFormatCollection object, in met één exemplaar van de indelingsklasse voor elke benoemde indeling die uw ontwerper kan toepassen.
De DesignerAutoFormat klasse biedt de volgende leden ter ondersteuning van automatische opmaak tijdens het ontwerp:
De Apply methode, waarmee de benoemde indeling wordt toegepast op het opgegeven besturingselement.
De methode GetPreviewControl, die een kopie van het besturingselement biedt voor voorbeeldweergave in een AutoFormat dialoogvenster van een visuele ontwerper, zoals Visual Studio 2005.
De Name eigenschap, waarmee de tekst wordt weergegeven in een lijst met indelingen in een visuele ontwerper.
Notities voor uitvoerders
Wanneer u de DesignerAutoFormat klasse overdraagt, moet u de Apply(Control) methode overschrijven om een voorbeeld van een opgemaakt besturingselement te bekijken en de geselecteerde indeling toe te passen op uw besturingselement.
Constructors
| Name | Description |
|---|---|
| DesignerAutoFormat(String) |
Initialiseert een nieuw exemplaar van de DesignerAutoFormat klasse. |
Eigenschappen
| Name | Description |
|---|---|
| Name |
Hiermee haalt u de naam van een DesignerAutoFormat object op. |
| Style |
Hiermee haalt u een DesignerAutoFormatStyle object op dat door het DesignerAutoFormat object wordt gebruikt om een ontwerptijdvoorbeeld van het bijbehorende besturingselement weer te geven. |
Methoden
| Name | Description |
|---|---|
| Apply(Control) |
Hiermee past u de bijbehorende opmaak toe op het opgegeven besturingselement. |
| Equals(Object) |
Bepaalt of het opgegeven object gelijk is aan het huidige object. (Overgenomen van Object) |
| GetHashCode() |
Fungeert als de standaardhashfunctie. (Overgenomen van Object) |
| GetPreviewControl(Control) |
Retourneert een kopie van het gekoppelde besturingselement om een voorbeeld te bieden voordat de opmaak op het besturingselement wordt toegepast. |
| GetType() |
Hiermee haalt u de Type huidige instantie op. (Overgenomen van Object) |
| MemberwiseClone() |
Hiermee maakt u een ondiepe kopie van de huidige Object. (Overgenomen van Object) |
| ToString() |
Retourneert een tekenreeks die het huidige DesignerAutoFormat object vertegenwoordigt. |