Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebParts / DesignerWebPartChrome.cs / 1 / DesignerWebPartChrome.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.WebControls.WebParts { 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 DesignerWebPartChrome : WebPartChrome { private ViewRendering _partViewRendering; public DesignerWebPartChrome(WebPartZoneBase zone) : base(zone, null) { } public ViewRendering GetViewRendering(Control control) { string designTimeHtml; DesignerRegionCollection regions; try { _partViewRendering = ControlDesigner.GetViewRendering(control); regions = _partViewRendering.Regions; WebPart webPart = control as WebPart; if (webPart == null) { // We should not reparent the control, so we must use the DesignerGenericWebPart instead // of the regular GenericWebPart. // Pass in the ViewControl instead of the Control, so that design-time themes are // reflected in the Chrome rendering webPart = new DesignerGenericWebPart(PartDesigner.GetViewControl(control)); } StringWriter innerWriter = new StringWriter(CultureInfo.InvariantCulture); // Pass in the ViewControl instead of the WebPart, so that design-time themes are // reflected in the Chrome rendering RenderWebPart(new DesignTimeHtmlTextWriter(innerWriter), (WebPart)PartDesigner.GetViewControl(webPart)); designTimeHtml = innerWriter.ToString(); } catch (Exception e) { designTimeHtml = ControlDesigner.CreateErrorDesignTimeHtml( SR.GetString(SR.ControlDesigner_UnhandledException), e, control); regions = new DesignerRegionCollection(); } StringWriter writer = new StringWriter(CultureInfo.InvariantCulture); DesignTimeHtmlTextWriter htmlTextWriter = new DesignTimeHtmlTextWriter(writer); bool horizontal = (Zone.LayoutOrientation == Orientation.Horizontal); if (horizontal) { htmlTextWriter.AddStyleAttribute("display", "inline-block"); htmlTextWriter.AddStyleAttribute(HtmlTextWriterStyle.Height, "100%"); htmlTextWriter.RenderBeginTag(HtmlTextWriterTag.Span); } htmlTextWriter.Write(designTimeHtml); if (horizontal) { htmlTextWriter.RenderEndTag(); } return new ViewRendering(writer.ToString(), regions); } protected override void RenderPartContents(HtmlTextWriter writer, WebPart webPart) { 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
- GetPageCompletedEventArgs.cs
- Condition.cs
- ItemsPresenter.cs
- ExpressionEditorAttribute.cs
- DrawingVisual.cs
- WebUtil.cs
- SevenBitStream.cs
- InternalConfigHost.cs
- ContextMenuAutomationPeer.cs
- DispatchWrapper.cs
- TargetControlTypeCache.cs
- IconHelper.cs
- HwndSource.cs
- XamlWriter.cs
- ControlSerializer.cs
- CompressionTransform.cs
- AttributeProviderAttribute.cs
- StreamHelper.cs
- NavigatingCancelEventArgs.cs
- PointAnimationClockResource.cs
- ComplexTypeEmitter.cs
- MinimizableAttributeTypeConverter.cs
- StreamSecurityUpgradeInitiator.cs
- MessageFormatterConverter.cs
- EntityClassGenerator.cs
- ElapsedEventArgs.cs
- SafeEventLogWriteHandle.cs
- LockedBorderGlyph.cs
- WebPartDeleteVerb.cs
- RowBinding.cs
- CheckBox.cs
- PermissionRequestEvidence.cs
- SecurityDocument.cs
- DefaultPropertyAttribute.cs
- AutomationEventArgs.cs
- TransportReplyChannelAcceptor.cs
- XmlConvert.cs
- DesignSurfaceCollection.cs
- EventHandlerList.cs
- DataSourceConverter.cs
- GridViewColumnCollectionChangedEventArgs.cs
- PageStatePersister.cs
- ComponentEditorForm.cs
- FixedSOMSemanticBox.cs
- Console.cs
- StringWriter.cs
- EventLogPermissionAttribute.cs
- XmlIlGenerator.cs
- DataTrigger.cs
- Authorization.cs
- ImageMap.cs
- FontInfo.cs
- WinCategoryAttribute.cs
- AppDomainCompilerProxy.cs
- FilterableAttribute.cs
- NavigatorOutput.cs
- Int32KeyFrameCollection.cs
- CollectionView.cs
- TopClause.cs
- SynchronizedDispatch.cs
- CheckBoxField.cs
- FixedSchema.cs
- EntityDesignPluralizationHandler.cs
- SqlBulkCopyColumnMappingCollection.cs
- SoapWriter.cs
- KerberosReceiverSecurityToken.cs
- DocumentSchemaValidator.cs
- CodeIndexerExpression.cs
- ObjectDataSourceSelectingEventArgs.cs
- ColorMap.cs
- DynamicQueryableWrapper.cs
- cookiecollection.cs
- HitTestParameters.cs
- DBCommandBuilder.cs
- BrushMappingModeValidation.cs
- RenderData.cs
- CombinedGeometry.cs
- FontFamilyIdentifier.cs
- ContentFilePart.cs
- MemberDescriptor.cs
- ContainerParagraph.cs
- ReturnValue.cs
- PageOutputQuality.cs
- PropertyValidationContext.cs
- DataGridViewCellStyleBuilderDialog.cs
- WebPartTransformerAttribute.cs
- COM2PictureConverter.cs
- XmlCharCheckingReader.cs
- ProviderException.cs
- ValueChangedEventManager.cs
- _HelperAsyncResults.cs
- ThreadStaticAttribute.cs
- TokenizerHelper.cs
- CodeBlockBuilder.cs
- FormViewInsertEventArgs.cs
- DiscoveryClientReferences.cs
- Buffer.cs
- MessageTraceRecord.cs
- XmlSchemaComplexContent.cs
- PriorityChain.cs