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
- mansign.cs
- CachedTypeface.cs
- JapaneseCalendar.cs
- DictionaryBase.cs
- xml.cs
- HandledEventArgs.cs
- ListBoxItemWrapperAutomationPeer.cs
- ComplexPropertyEntry.cs
- HtmlAnchor.cs
- XmlAtomErrorReader.cs
- WindowsToolbar.cs
- CreateUserErrorEventArgs.cs
- SizeConverter.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- ADConnectionHelper.cs
- ScrollBarAutomationPeer.cs
- FlatButtonAppearance.cs
- TextOutput.cs
- MatrixValueSerializer.cs
- Script.cs
- NavigationWindow.cs
- ReliableRequestSessionChannel.cs
- ScalarType.cs
- AutomationEventArgs.cs
- SqlInternalConnection.cs
- NamespaceDisplay.xaml.cs
- QueryResponse.cs
- base64Transforms.cs
- ColorIndependentAnimationStorage.cs
- DesignTimeVisibleAttribute.cs
- Helpers.cs
- AsymmetricSignatureDeformatter.cs
- AnnotationAuthorChangedEventArgs.cs
- AppliedDeviceFiltersEditor.cs
- UniqueIdentifierService.cs
- SimpleMailWebEventProvider.cs
- ResXBuildProvider.cs
- RNGCryptoServiceProvider.cs
- InputEventArgs.cs
- CommonObjectSecurity.cs
- ApplicationContext.cs
- DummyDataSource.cs
- DynamicResourceExtension.cs
- DynamicActionMessageFilter.cs
- Win32MouseDevice.cs
- DataBinding.cs
- MatrixCamera.cs
- TransformConverter.cs
- ProcessHostMapPath.cs
- ToolBar.cs
- ResXFileRef.cs
- NativeMethodsCLR.cs
- AttributeQuery.cs
- UInt16Storage.cs
- ChangeInterceptorAttribute.cs
- DelayedRegex.cs
- GcSettings.cs
- EditorBrowsableAttribute.cs
- DataSetFieldSchema.cs
- HierarchicalDataBoundControl.cs
- VolatileEnlistmentMultiplexing.cs
- FixedElement.cs
- Privilege.cs
- AppliedDeviceFiltersDialog.cs
- Win32SafeHandles.cs
- ImportCatalogPart.cs
- UpdatePanel.cs
- BaseDataListDesigner.cs
- AlignmentXValidation.cs
- WebPartTransformerAttribute.cs
- TemplatedAdorner.cs
- Decorator.cs
- ListItemParagraph.cs
- ErasingStroke.cs
- WindowsFormsHelpers.cs
- ExpressionBuilderContext.cs
- TypeGeneratedEventArgs.cs
- BooleanProjectedSlot.cs
- SignatureConfirmationElement.cs
- ViewManager.cs
- XmlCharType.cs
- TableColumnCollection.cs
- CheckBox.cs
- TypeNameHelper.cs
- DbConnectionStringBuilder.cs
- ListBase.cs
- QueryOpeningEnumerator.cs
- SqlUtil.cs
- FontWeights.cs
- PrePostDescendentsWalker.cs
- GiveFeedbackEvent.cs
- TTSEngineProxy.cs
- NativeCompoundFileAPIs.cs
- __TransparentProxy.cs
- StrongNameUtility.cs
- Base64Stream.cs
- CounterNameConverter.cs
- SqlNotificationRequest.cs
- CharacterString.cs
- BuildProviderInstallComponent.cs