Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebParts / CatalogZoneDesigner.cs / 1 / CatalogZoneDesigner.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.WebControls.WebParts { using System.ComponentModel; using System.ComponentModel.Design; using System.Data; using System.Design; using System.Diagnostics; using System.Globalization; using System.IO; using System.Web.UI.Design; using System.Web.UI.Design.WebControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; ////// [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] public class CatalogZoneDesigner : ToolZoneDesigner { private static DesignerAutoFormatCollection _autoFormats; private CatalogZone _zone; private TemplateGroup _templateGroup; public override DesignerAutoFormatCollection AutoFormats { get { if (_autoFormats == null) { _autoFormats = CreateAutoFormats(AutoFormatSchemes.CATALOGZONE_SCHEMES, delegate(DataRow schemeData) { return new CatalogZoneAutoFormat(schemeData); }); } return _autoFormats; } } public override TemplateGroupCollection TemplateGroups { get { TemplateGroupCollection groups = base.TemplateGroups; if (_templateGroup == null) { _templateGroup = CreateZoneTemplateGroup(); } groups.Add(_templateGroup); return groups; } } public override string GetDesignTimeHtml() { return GetDesignTimeHtml(null); } ////// /// Provides the layout html for the control in the designer, including regions. /// public override string GetDesignTimeHtml(DesignerRegionCollection regions) { string designTimeHtml; try { CatalogZone zone = (CatalogZone)ViewControl; bool useRegions = UseRegions(regions, _zone.ZoneTemplate, zone.ZoneTemplate); // When there is an editable region, we want to use the regular control // rendering instead of the EmptyDesignTimeHtml if (zone.ZoneTemplate == null && !useRegions) { designTimeHtml = GetEmptyDesignTimeHtml(); } else { ((ICompositeControlDesignerAccessor)zone).RecreateChildControls(); if (useRegions) { // If the tools supports editable regions, the initial rendering of the // WebParts in the Zone is thrown away by the tool anyway, so we should clear // the controls collection before rendering. If we don't clear the controls // collection and a WebPart inside the Zone throws an exception when rendering, // this would cause the whole Zone to render as an error, instead of just // the offending WebPart. This also improves perf. zone.Controls.Clear(); CatalogPartEditableDesignerRegion region = new CatalogPartEditableDesignerRegion(zone, TemplateDefinition); // Tells Venus that all controls inside the EditableRegion should be parented to the zone region.Properties[typeof(Control)] = zone; region.IsSingleInstanceTemplate = true; region.Description = SR.GetString(SR.ContainerControlDesigner_RegionWatermark); regions.Add(region); } designTimeHtml = base.GetDesignTimeHtml(); } if (ViewInBrowseMode && zone.ID != CatalogZoneAutoFormat.PreviewControlID) { designTimeHtml = CreatePlaceHolderDesignTimeHtml(); } } catch (Exception e) { designTimeHtml = GetErrorDesignTimeHtml(e); } return designTimeHtml; } ////// /// Get the content for the specified region /// public override string GetEditableDesignerRegionContent(EditableDesignerRegion region) { Debug.Assert(region != null); // Occasionally getting NullRef here in WebMatrix. Maybe Zone is null? Debug.Assert(_zone != null); return ControlPersister.PersistTemplate(_zone.ZoneTemplate, (IDesignerHost)Component.Site.GetService(typeof(IDesignerHost))); } protected override string GetEmptyDesignTimeHtml() { return CreatePlaceHolderDesignTimeHtml(SR.GetString(SR.CatalogZoneDesigner_Empty)); } public override void Initialize(IComponent component) { VerifyInitializeArgument(component, typeof(CatalogZone)); base.Initialize(component); _zone = (CatalogZone)component; } ////// /// Set the content for the specified region /// public override void SetEditableDesignerRegionContent(EditableDesignerRegion region, string content) { Debug.Assert(region != null); _zone.ZoneTemplate = ControlParser.ParseTemplate((IDesignerHost)Component.Site.GetService(typeof(IDesignerHost)), content); IsDirtyInternal = true; } private sealed class CatalogPartEditableDesignerRegion : TemplatedEditableDesignerRegion { private CatalogZone _zone; public CatalogPartEditableDesignerRegion(CatalogZone zone, TemplateDefinition templateDefinition) : base(templateDefinition) { _zone = zone; } public override ViewRendering GetChildViewRendering(Control control) { if (control == null) { throw new ArgumentNullException("control"); } DesignerCatalogPartChrome chrome = new DesignerCatalogPartChrome(_zone); return chrome.GetViewRendering(control); } } } } // 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
- metadatamappinghashervisitor.cs
- TemplateColumn.cs
- AspProxy.cs
- ClientSettingsStore.cs
- TextBox.cs
- TextProperties.cs
- TimeSpanValidator.cs
- SetterBaseCollection.cs
- ControlBuilderAttribute.cs
- UpWmlPageAdapter.cs
- CatalogPartChrome.cs
- TypedDatasetGenerator.cs
- InkCanvasSelection.cs
- ExpressionQuoter.cs
- ValidationPropertyAttribute.cs
- ReturnEventArgs.cs
- XmlSubtreeReader.cs
- DependencyPropertyAttribute.cs
- CancellationTokenRegistration.cs
- HashCodeCombiner.cs
- Bold.cs
- HttpConfigurationContext.cs
- CustomValidator.cs
- InternalResources.cs
- PageContent.cs
- FileUpload.cs
- DictionaryTraceRecord.cs
- TextRunCacheImp.cs
- WebConfigurationFileMap.cs
- DeadCharTextComposition.cs
- Selection.cs
- ImageKeyConverter.cs
- StyleTypedPropertyAttribute.cs
- UnknownWrapper.cs
- OleDbParameter.cs
- PartitionResolver.cs
- DesignTimeVisibleAttribute.cs
- ToolboxComponentsCreatingEventArgs.cs
- AsyncCodeActivityContext.cs
- SymbolDocumentGenerator.cs
- OptimalBreakSession.cs
- HMACSHA512.cs
- StreamResourceInfo.cs
- XmlNamespaceMapping.cs
- ColorConverter.cs
- TextMetrics.cs
- GradientStop.cs
- Serializer.cs
- BamlLocalizationDictionary.cs
- SqlBooleanMismatchVisitor.cs
- odbcmetadatacollectionnames.cs
- ReadOnlyAttribute.cs
- BevelBitmapEffect.cs
- ReverseInheritProperty.cs
- KerberosRequestorSecurityToken.cs
- DesignerRegionMouseEventArgs.cs
- ConfigViewGenerator.cs
- ValidationHelper.cs
- Label.cs
- CultureInfo.cs
- RequestQueryParser.cs
- ContainerSelectorBehavior.cs
- SafeViewOfFileHandle.cs
- CodeMemberField.cs
- ProcessHostFactoryHelper.cs
- Composition.cs
- HyperlinkAutomationPeer.cs
- XmlSchemaSet.cs
- TokenBasedSet.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- SecurityDocument.cs
- BitmapScalingModeValidation.cs
- Int64Storage.cs
- CapabilitiesState.cs
- PlaceHolder.cs
- XPathBuilder.cs
- Vector3DValueSerializer.cs
- BaseConfigurationRecord.cs
- Size.cs
- LinqDataSourceSelectEventArgs.cs
- SHA512Managed.cs
- FixedPageStructure.cs
- __TransparentProxy.cs
- TrustManagerMoreInformation.cs
- RemotingAttributes.cs
- SerializationStore.cs
- DependentList.cs
- DataListItemEventArgs.cs
- IndexOutOfRangeException.cs
- DataKey.cs
- HandlerFactoryWrapper.cs
- ReachDocumentSequenceSerializerAsync.cs
- XmlSchemaAttribute.cs
- StaticContext.cs
- GridViewUpdatedEventArgs.cs
- LinearGradientBrush.cs
- LocationUpdates.cs
- View.cs
- Misc.cs
- CmsInterop.cs