Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebParts / CatalogZoneAutoFormat.cs / 1 / CatalogZoneAutoFormat.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.WebControls.WebParts { using System.Data; using System.Design; using System.Globalization; using System.Web.UI.WebControls.WebParts; internal sealed class CatalogZoneAutoFormat : BaseAutoFormat { internal const string PreviewControlID = "AutoFormatPreviewControl"; public CatalogZoneAutoFormat(DataRow schemeData) : base(schemeData) { // Use default Height Style.Width = 300; } public override Control GetPreviewControl(Control runtimeControl) { CatalogZone previewZone = (CatalogZone)base.GetPreviewControl(runtimeControl); // If the zone contains no CatalogParts, set the ZoneTemplate to a dummy Template, so // that there is at least one CatalogPart in the AutoFormat preview if (previewZone != null && previewZone.CatalogParts.Count == 0) { previewZone.ZoneTemplate = new AutoFormatTemplate(); } // Set the ID of the zone to the special PreviewControlID, so the CatalogZoneDesigner // doesn't render the placeholder for this control in the AutoFormat dialog, regardless // of whether ViewInEditMode is true. previewZone.ID = PreviewControlID; return previewZone; } private sealed class AutoFormatTemplate : ITemplate { public void InstantiateIn(Control container) { DeclarativeCatalogPart sampleCatalogPart = new DeclarativeCatalogPart(); sampleCatalogPart.WebPartsTemplate = new SampleCatalogPartTemplate(); sampleCatalogPart.ID = "SampleCatalogPart"; container.Controls.Add(sampleCatalogPart); } private sealed class SampleCatalogPartTemplate : ITemplate { public void InstantiateIn(Control container) { SampleWebPart sampleWebPart = new SampleWebPart(); sampleWebPart.ID = "SampleWebPart1"; sampleWebPart.Title = String.Format(CultureInfo.CurrentCulture, SR.GetString(SR.CatalogZone_SampleWebPartTitle), "1"); container.Controls.Add(sampleWebPart); sampleWebPart = new SampleWebPart(); sampleWebPart.ID = "SampleWebPart2"; sampleWebPart.Title = String.Format(CultureInfo.CurrentCulture, SR.GetString(SR.CatalogZone_SampleWebPartTitle), "2"); container.Controls.Add(sampleWebPart); sampleWebPart = new SampleWebPart(); sampleWebPart.ID = "SampleWebPart3"; sampleWebPart.Title = String.Format(CultureInfo.CurrentCulture, SR.GetString(SR.CatalogZone_SampleWebPartTitle), "3"); container.Controls.Add(sampleWebPart); } private sealed class SampleWebPart : WebPart { } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StreamingContext.cs
- RichTextBoxConstants.cs
- TagNameToTypeMapper.cs
- TransformationRules.cs
- VisualStyleTypesAndProperties.cs
- XPathDocumentIterator.cs
- documentsequencetextview.cs
- HighlightVisual.cs
- UpDownEvent.cs
- HttpValueCollection.cs
- Compilation.cs
- ToolStripPanel.cs
- DownloadProgressEventArgs.cs
- AnnotationResourceCollection.cs
- FrameworkElement.cs
- RowToFieldTransformer.cs
- ServiceMetadataPublishingElement.cs
- UpdateProgress.cs
- HwndMouseInputProvider.cs
- DynamicILGenerator.cs
- XmlSignificantWhitespace.cs
- login.cs
- Converter.cs
- TimeSpanFormat.cs
- ExpressionBindings.cs
- FeatureSupport.cs
- Vector3DKeyFrameCollection.cs
- TripleDESCryptoServiceProvider.cs
- MachineKey.cs
- MobileUITypeEditor.cs
- DataServiceClientException.cs
- SQLStringStorage.cs
- ListControlDesigner.cs
- TreeViewDataItemAutomationPeer.cs
- AppearanceEditorPart.cs
- DataTableCollection.cs
- FlowLayout.cs
- ListView.cs
- TextServicesManager.cs
- _IPv4Address.cs
- FrameDimension.cs
- SqlClientFactory.cs
- HttpBrowserCapabilitiesBase.cs
- WebBrowsableAttribute.cs
- WebPartExportVerb.cs
- CngKey.cs
- WorkflowApplicationCompletedEventArgs.cs
- SystemGatewayIPAddressInformation.cs
- Environment.cs
- ServiceThrottle.cs
- AnnouncementEndpoint.cs
- FlowNode.cs
- RealizationContext.cs
- ScrollEvent.cs
- WorkItem.cs
- Models.cs
- FlowDecision.cs
- SQLInt16.cs
- DesigntimeLicenseContext.cs
- GlobalAllocSafeHandle.cs
- DesignerActionTextItem.cs
- FixedHyperLink.cs
- AppSettingsReader.cs
- ProtocolsConfigurationEntry.cs
- IDReferencePropertyAttribute.cs
- XmlEncoding.cs
- DeobfuscatingStream.cs
- AssemblyAssociatedContentFileAttribute.cs
- ManagedCodeMarkers.cs
- ReaderWriterLockWrapper.cs
- AssemblySettingAttributes.cs
- SpellerStatusTable.cs
- SplitContainerDesigner.cs
- GcSettings.cs
- EventLogConfiguration.cs
- DiagnosticTraceSource.cs
- ItemsControlAutomationPeer.cs
- ListView.cs
- ExtenderHelpers.cs
- Control.cs
- AuthenticationException.cs
- QualificationDataItem.cs
- ModelPerspective.cs
- ListViewItemMouseHoverEvent.cs
- ProviderException.cs
- ValidateNames.cs
- SqlGatherConsumedAliases.cs
- StrongNameKeyPair.cs
- WorkerRequest.cs
- BitmapCodecInfo.cs
- FieldToken.cs
- CursorConverter.cs
- PropertyToken.cs
- DrawingAttributeSerializer.cs
- TraceData.cs
- KoreanLunisolarCalendar.cs
- NameTable.cs
- PointHitTestParameters.cs
- MaterialGroup.cs
- UpdateExpressionVisitor.cs