Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebParts / DesignerEditorPartChrome.cs / 1 / DesignerEditorPartChrome.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.WebControls.WebParts { using System.Collections; using System.Collections.Specialized; using System.Design; using System.Globalization; using System.IO; using System.Web.UI; using System.Web.UI.Design; 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)] internal class DesignerEditorPartChrome : EditorPartChrome { private ViewRendering _partViewRendering; public DesignerEditorPartChrome(EditorZone zone) : base(zone) { } public ViewRendering GetViewRendering(Control control) { EditorPart part = control as EditorPart; if (part == null) { // The control is not an EditorPart, so we should render an error block. (VSWhidbey 232109) string errorDesignTimeHtml = ControlDesigner.CreateErrorDesignTimeHtml( SR.GetString(SR.EditorZoneDesigner_OnlyEditorParts), null, control); return new ViewRendering(errorDesignTimeHtml, new DesignerRegionCollection()); } else { string designTimeHtml; DesignerRegionCollection regions; try { // Set Zone for EditorPart at design-time IDictionary param = new HybridDictionary(1); param["Zone"] = Zone; ((IControlDesignerAccessor)part).SetDesignModeState(param); _partViewRendering = ControlDesigner.GetViewRendering(part); regions = _partViewRendering.Regions; StringWriter writer = new StringWriter(CultureInfo.InvariantCulture); // Pass in the ViewControl instead of the EditorPart, so that design-time themes are // reflected in the Chrome rendering RenderEditorPart(new DesignTimeHtmlTextWriter(writer), (EditorPart)PartDesigner.GetViewControl(part)); designTimeHtml = writer.ToString(); } catch (Exception e) { designTimeHtml = ControlDesigner.CreateErrorDesignTimeHtml( SR.GetString(SR.ControlDesigner_UnhandledException), e, control); regions = new DesignerRegionCollection(); } return new ViewRendering(designTimeHtml, regions); } } protected override void RenderPartContents(HtmlTextWriter writer, EditorPart editorPart) { writer.Write(_partViewRendering.Content); } } } // 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
- LinkedResourceCollection.cs
- DBAsyncResult.cs
- ReadOnlyDataSource.cs
- ClientSettingsStore.cs
- DataGridTextBoxColumn.cs
- MenuItemStyle.cs
- RegexParser.cs
- COM2IPerPropertyBrowsingHandler.cs
- IPeerNeighbor.cs
- Relationship.cs
- UnhandledExceptionEventArgs.cs
- RequiredFieldValidator.cs
- SchemaTableColumn.cs
- EdmSchemaAttribute.cs
- ParseElement.cs
- ViewUtilities.cs
- Console.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- RawMouseInputReport.cs
- LinearGradientBrush.cs
- DataGridViewCellParsingEventArgs.cs
- _NegotiateClient.cs
- XmlBinaryReader.cs
- NavigationService.cs
- BindingContext.cs
- XmlWellformedWriter.cs
- TextAnchor.cs
- SourceFileBuildProvider.cs
- HtmlInputSubmit.cs
- xmlsaver.cs
- FlowDocumentPage.cs
- ScriptHandlerFactory.cs
- ControlCachePolicy.cs
- StreamResourceInfo.cs
- TemplateNameScope.cs
- SqlAliaser.cs
- RootBuilder.cs
- NativeMethods.cs
- SocketSettings.cs
- Rect3D.cs
- SmtpCommands.cs
- PrintDialogException.cs
- UrlMapping.cs
- ServicePointManager.cs
- CodeTypeDeclarationCollection.cs
- NameGenerator.cs
- RegexMatch.cs
- XmlUnspecifiedAttribute.cs
- QilValidationVisitor.cs
- PointF.cs
- HashAlgorithm.cs
- MouseGestureConverter.cs
- Authorization.cs
- TypeResolver.cs
- RequestCache.cs
- shaperfactoryquerycacheentry.cs
- FontFamily.cs
- UInt64.cs
- PrivateFontCollection.cs
- VectorAnimationUsingKeyFrames.cs
- Scheduling.cs
- StylusPlugin.cs
- Dynamic.cs
- InternalBufferOverflowException.cs
- WindowsGraphicsCacheManager.cs
- SrgsElementFactory.cs
- SelectionChangedEventArgs.cs
- SettingsBindableAttribute.cs
- ThreadExceptionDialog.cs
- FileSystemEnumerable.cs
- TypeUnloadedException.cs
- SocketException.cs
- ExpandSegmentCollection.cs
- TextServicesCompartmentEventSink.cs
- PowerModeChangedEventArgs.cs
- BaseValidatorDesigner.cs
- Boolean.cs
- TeredoHelper.cs
- SoapAttributeOverrides.cs
- WeakReferenceEnumerator.cs
- EmptyStringExpandableObjectConverter.cs
- ObjectAnimationBase.cs
- HtmlHistory.cs
- Misc.cs
- FamilyCollection.cs
- InlinedAggregationOperatorEnumerator.cs
- ByteStack.cs
- ButtonColumn.cs
- Propagator.cs
- HtmlInputReset.cs
- AppSettings.cs
- WorkflowCompensationBehavior.cs
- SqlServer2KCompatibilityCheck.cs
- IdentifierCollection.cs
- EntityViewGenerator.cs
- XmlNodeChangedEventManager.cs
- DataGridViewCellConverter.cs
- SchemaCollectionPreprocessor.cs
- HtmlTableRow.cs
- TextEditorThreadLocalStore.cs