Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / TemplateEditingService.cs / 1 / TemplateEditingService.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design { using System; using System.ComponentModel; using System.ComponentModel.Design; using System.Design; using System.Diagnostics; using System.Web.UI; using System.Web.UI.WebControls; ////// [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] [Obsolete("Use of this type is not recommended because template editing is handled in ControlDesigner. To support template editing expose template data in the TemplateGroups property and call SetViewFlags(ViewFlags.TemplateEditing, true). http://go.microsoft.com/fwlink/?linkid=14202")] public sealed class TemplateEditingService : ITemplateEditingService, IDisposable { private IDesignerHost designerHost; /// public TemplateEditingService(IDesignerHost designerHost) { if (designerHost == null) { throw new ArgumentNullException("designerHost"); } this.designerHost = designerHost; } /// public bool SupportsNestedTemplateEditing { get { return false; } } /// public ITemplateEditingFrame CreateFrame(TemplatedControlDesigner designer, string frameName, string[] templateNames) { return CreateFrame(designer, frameName, templateNames, null, null); } /// public ITemplateEditingFrame CreateFrame(TemplatedControlDesigner designer, string frameName, string[] templateNames, Style controlStyle, Style[] templateStyles) { if (designer == null) { throw new ArgumentNullException("designer"); } if ((frameName == null) || (frameName.Length == 0)) { throw new ArgumentNullException("frameName"); } if ((templateNames == null) || (templateNames.Length == 0)) { throw new ArgumentException("templateNames"); } if ((templateStyles != null) && (templateStyles.Length != templateNames.Length)) { throw new ArgumentException("templateStyles"); } frameName = CreateFrameName(frameName); return new TemplateEditingFrame(designer, frameName, templateNames, controlStyle, templateStyles); } private string CreateFrameName(string frameName) { Debug.Assert((frameName != null) && (frameName.Length != 0)); // Strips out the ampersand typically used for menu mnemonics int index = frameName.IndexOf('&'); if (index < 0) { return frameName; } else if (index == 0) { return frameName.Substring(index + 1); } else { return frameName.Substring(0, index) + frameName.Substring(index + 1); } } /// public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } /// ~TemplateEditingService() { Dispose(false); } private void Dispose(bool disposing) { if (disposing) { designerHost = null; } } /// public string GetContainingTemplateName(Control control) { string containingTemplateName = String.Empty; HtmlControlDesigner designer = (HtmlControlDesigner)designerHost.GetDesigner(control); if (designer != null) { IHtmlControlDesignerBehavior behavior = designer.BehaviorInternal; NativeMethods.IHTMLElement htmlElement = (NativeMethods.IHTMLElement)behavior.DesignTimeElement; if (htmlElement != null) { object[] varTemplateName = new Object[1]; NativeMethods.IHTMLElement htmlelemParentNext; NativeMethods.IHTMLElement htmlelemParentCur = htmlElement.GetParentElement(); while (htmlelemParentCur != null) { htmlelemParentCur.GetAttribute("templatename", /*lFlags*/ 0, varTemplateName); if (varTemplateName[0] != null && varTemplateName[0].GetType() == typeof(string)) { containingTemplateName = varTemplateName[0].ToString(); break; } htmlelemParentNext = htmlelemParentCur.GetParentElement(); htmlelemParentCur = htmlelemParentNext; } } } return containingTemplateName; } } } // 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
- BigInt.cs
- DataPointer.cs
- ObjectListDataBindEventArgs.cs
- ActivityCodeGenerator.cs
- JoinGraph.cs
- PageThemeCodeDomTreeGenerator.cs
- SolidBrush.cs
- PageAsyncTaskManager.cs
- ManipulationLogic.cs
- TextParagraphProperties.cs
- XmlEntityReference.cs
- HttpServerUtilityWrapper.cs
- DataServices.cs
- TableColumnCollection.cs
- LifetimeMonitor.cs
- XmlDomTextWriter.cs
- BasicViewGenerator.cs
- FontEmbeddingManager.cs
- LinkLabel.cs
- PropertyPath.cs
- UnicastIPAddressInformationCollection.cs
- ProvidersHelper.cs
- FrameSecurityDescriptor.cs
- ContextDataSource.cs
- CultureTable.cs
- TypeConverter.cs
- WindowsStatic.cs
- ConsoleKeyInfo.cs
- TextRange.cs
- WindowsGraphics2.cs
- WindowsProgressbar.cs
- DragCompletedEventArgs.cs
- RtfFormatStack.cs
- BasicKeyConstraint.cs
- TextPointerBase.cs
- TransactionWaitAsyncResult.cs
- MatrixTransform3D.cs
- WebResourceUtil.cs
- WebBrowser.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- BoundField.cs
- Point4DValueSerializer.cs
- WebHostUnsafeNativeMethods.cs
- SvcMapFileSerializer.cs
- GeneratedContractType.cs
- MergeFilterQuery.cs
- CurrentChangingEventManager.cs
- Permission.cs
- RewritingValidator.cs
- InheritedPropertyChangedEventArgs.cs
- CommandID.cs
- XmlSchemaObject.cs
- SQLByteStorage.cs
- MsmqBindingMonitor.cs
- VirtualizedItemProviderWrapper.cs
- SmtpTransport.cs
- RightsManagementEncryptionTransform.cs
- MapPathBasedVirtualPathProvider.cs
- StylusEditingBehavior.cs
- PerSessionInstanceContextProvider.cs
- NameValueSectionHandler.cs
- HttpValueCollection.cs
- GlobalProxySelection.cs
- TraceProvider.cs
- BidirectionalDictionary.cs
- Guid.cs
- ConfigXmlWhitespace.cs
- RoleManagerSection.cs
- PageAdapter.cs
- DataReceivedEventArgs.cs
- TextRangeEdit.cs
- CompressionTracing.cs
- PostBackOptions.cs
- AuthStoreRoleProvider.cs
- ExtensibleClassFactory.cs
- CmsInterop.cs
- MessageQueueEnumerator.cs
- ActivitySurrogate.cs
- DummyDataSource.cs
- localization.cs
- XmlQueryContext.cs
- UnionExpr.cs
- _Connection.cs
- DetailsViewDeleteEventArgs.cs
- NameValueSectionHandler.cs
- Brushes.cs
- ScriptModule.cs
- SafeReversePInvokeHandle.cs
- TemplateContainer.cs
- TextWriterTraceListener.cs
- CompilerScopeManager.cs
- ProfileModule.cs
- FlagsAttribute.cs
- InvokePattern.cs
- ContainerParagraph.cs
- InfoCardRSACryptoProvider.cs
- SecurityDocument.cs
- ResourceContainerWrapper.cs
- AppModelKnownContentFactory.cs
- StringStorage.cs