Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / TemplateDefinition.cs / 1 / TemplateDefinition.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.WebControls; ///public class TemplateDefinition : DesignerObject { private Style _style; private string _templatePropertyName; private object _templatedObject; private PropertyDescriptor _templateProperty; private bool _serverControlsOnly; private bool _supportsDataBinding; /// public TemplateDefinition(ControlDesigner designer, string name, object templatedObject, string templatePropertyName) : this(designer, name, templatedObject, templatePropertyName, false) { } /// public TemplateDefinition(ControlDesigner designer, string name, object templatedObject, string templatePropertyName, Style style) : this(designer, name, templatedObject, templatePropertyName, style, false) { } /// public TemplateDefinition(ControlDesigner designer, string name, object templatedObject, string templatePropertyName, bool serverControlsOnly) : this(designer, name, templatedObject, templatePropertyName, null, serverControlsOnly) { } /// public TemplateDefinition(ControlDesigner designer, string name, object templatedObject, string templatePropertyName, Style style, bool serverControlsOnly) : base(designer, name) { if ((templatePropertyName == null) || (templatePropertyName.Length == 0)) { throw new ArgumentNullException("templatePropertyName"); } if (templatedObject == null) { throw new ArgumentNullException("templatedObject"); } _serverControlsOnly = serverControlsOnly; _style = style; _templatedObject = templatedObject; _templatePropertyName = templatePropertyName; } public virtual bool AllowEditing { get { return true; } } /// public virtual string Content { get { ITemplate template = (ITemplate)TemplateProperty.GetValue(TemplatedObject); IDesignerHost host = (IDesignerHost)GetService(typeof(IDesignerHost)); return ControlPersister.PersistTemplate(template, host); } set { IDesignerHost host = (IDesignerHost)GetService(typeof(IDesignerHost)); ITemplate template = ControlParser.ParseTemplate(host, value); TemplateProperty.SetValue(TemplatedObject, template); } } /// /// public bool ServerControlsOnly { get { return _serverControlsOnly; } } ////// public bool SupportsDataBinding { get { return _supportsDataBinding; } set { _supportsDataBinding = value; } } ////// /// public Style Style { get { return _style; } } ///public object TemplatedObject { get { return _templatedObject; } } private PropertyDescriptor TemplateProperty { get { if (_templateProperty == null) { _templateProperty = TypeDescriptor.GetProperties(TemplatedObject)[TemplatePropertyName]; if ((_templateProperty == null) || !typeof(ITemplate).IsAssignableFrom(_templateProperty.PropertyType)) { throw new InvalidOperationException(SR.GetString(SR.TemplateDefinition_InvalidTemplateProperty, TemplatePropertyName)); } } return _templateProperty; } } /// public string TemplatePropertyName { get { return _templatePropertyName; } } } } // 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
- StyleXamlTreeBuilder.cs
- RectIndependentAnimationStorage.cs
- RequestSecurityTokenResponseCollection.cs
- RuntimeCompatibilityAttribute.cs
- ContextInformation.cs
- MetaDataInfo.cs
- DbConnectionClosed.cs
- ToolStripPanelSelectionBehavior.cs
- BaseTemplateCodeDomTreeGenerator.cs
- TextBoxView.cs
- Bits.cs
- HttpCachePolicyElement.cs
- PersonalizationEntry.cs
- JulianCalendar.cs
- TiffBitmapDecoder.cs
- CaseStatement.cs
- VirtualPathProvider.cs
- FileUtil.cs
- DateTimeFormatInfoScanner.cs
- WebPartDescription.cs
- CollectionViewProxy.cs
- FactoryRecord.cs
- NegatedCellConstant.cs
- CategoryNameCollection.cs
- XmlQueryContext.cs
- TCPListener.cs
- ObfuscateAssemblyAttribute.cs
- Preprocessor.cs
- XsdValidatingReader.cs
- DesignerAttribute.cs
- RepeatButton.cs
- RichTextBox.cs
- HttpResponseBase.cs
- ImageMap.cs
- CharUnicodeInfo.cs
- EasingKeyFrames.cs
- MimeParameter.cs
- PolyQuadraticBezierSegment.cs
- QueryAsyncResult.cs
- MarkupObject.cs
- CorrelationTokenInvalidatedHandler.cs
- SmiEventSink_Default.cs
- Item.cs
- ToolStripItemTextRenderEventArgs.cs
- HostUtils.cs
- RegexCapture.cs
- Queue.cs
- UriExt.cs
- ToolStripLabel.cs
- TemplateBuilder.cs
- MetricEntry.cs
- ValueType.cs
- FormViewInsertEventArgs.cs
- SimpleBitVector32.cs
- SimplePropertyEntry.cs
- TiffBitmapDecoder.cs
- MsmqIntegrationMessagePool.cs
- TreeNodeStyleCollection.cs
- VerticalAlignConverter.cs
- DetailsViewCommandEventArgs.cs
- nulltextnavigator.cs
- TimeIntervalCollection.cs
- InternalsVisibleToAttribute.cs
- StrongNameUtility.cs
- IISMapPath.cs
- ControlCodeDomSerializer.cs
- UInt32.cs
- DataGridRowsPresenter.cs
- Transform3D.cs
- ScrollItemProviderWrapper.cs
- SqlUtils.cs
- InkCanvasAutomationPeer.cs
- XmlElementList.cs
- RightsManagementEncryptionTransform.cs
- DataGridViewRow.cs
- PrinterUnitConvert.cs
- RegisteredHiddenField.cs
- LayoutEditorPart.cs
- InternalConfigHost.cs
- InkPresenterAutomationPeer.cs
- FormClosingEvent.cs
- SqlProviderServices.cs
- ContentElement.cs
- MobileControl.cs
- EntryPointNotFoundException.cs
- XmlDocument.cs
- UnknownWrapper.cs
- RemotingClientProxy.cs
- UInt16Storage.cs
- MetadataItemSerializer.cs
- ByteAnimationUsingKeyFrames.cs
- DuplicateWaitObjectException.cs
- DefaultEvaluationContext.cs
- BindStream.cs
- FileDialog.cs
- DllNotFoundException.cs
- EmptyStringExpandableObjectConverter.cs
- MruCache.cs
- EmptyElement.cs
- SubclassTypeValidator.cs