Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / TextDataBindingHandler.cs / 1 / TextDataBindingHandler.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design { using System; using System.Design; using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; using System.Reflection; using System.Web.UI; ////// /// [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] public class TextDataBindingHandler : DataBindingHandler { ///[To be supplied.] ////// /// public override void DataBindControl(IDesignerHost designerHost, Control control) { DataBinding textBinding = ((IDataBindingsAccessor)control).DataBindings["Text"]; if (textBinding != null) { PropertyInfo textProperty = control.GetType().GetProperty("Text"); Debug.Assert(textProperty != null, "Did not find Text property on control"); if (textProperty != null) { Debug.Assert(textProperty.PropertyType == typeof(string), "Can only handle Text properties of type string."); if (textProperty.PropertyType == typeof(string)) { DesignTimeDataBinding dt = new DesignTimeDataBinding(textBinding); string stringValue = String.Empty; if (!dt.IsCustom) { try { stringValue = DataBinder.Eval(((IDataItemContainer)control.NamingContainer).DataItem, dt.Field, dt.Format); } catch { // If the databinding failed, just use the default 'Databound' text } } if ((stringValue == null) || (stringValue.Length == 0)) { stringValue = SR.GetString(SR.Sample_Databound_Text); } textProperty.SetValue(control, stringValue, null); } } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ScrollData.cs
- TableRowGroupCollection.cs
- CodeRegionDirective.cs
- ContainerParagraph.cs
- PathFigureCollectionConverter.cs
- TypeConverterHelper.cs
- IntSecurity.cs
- ContentElement.cs
- Knowncolors.cs
- EmptyElement.cs
- _PooledStream.cs
- SerializationInfo.cs
- MatchingStyle.cs
- EnumValidator.cs
- EventProviderBase.cs
- XsltContext.cs
- ToolBarPanel.cs
- UnmanagedBitmapWrapper.cs
- UTF32Encoding.cs
- FontNameEditor.cs
- SafeArrayRankMismatchException.cs
- ToolTip.cs
- XmlLanguage.cs
- FixedElement.cs
- Trace.cs
- StringCollection.cs
- CLSCompliantAttribute.cs
- ErrorFormatterPage.cs
- GraphicsState.cs
- SingleConverter.cs
- Cursors.cs
- ThreadAttributes.cs
- CollectionView.cs
- OletxResourceManager.cs
- HandoffBehavior.cs
- MatrixTransform3D.cs
- XmlHelper.cs
- CachedFontFamily.cs
- SqlFileStream.cs
- SspiNegotiationTokenAuthenticatorState.cs
- Line.cs
- XmlSchemaValidator.cs
- Page.cs
- PrimarySelectionGlyph.cs
- C14NUtil.cs
- SHA1Managed.cs
- ProxyGenerationError.cs
- ChangesetResponse.cs
- TextDecorationCollection.cs
- BrushMappingModeValidation.cs
- SqlCachedBuffer.cs
- EdmFunctions.cs
- ByteStack.cs
- XmlSchemaComplexType.cs
- AssemblyUtil.cs
- Timeline.cs
- TextTrailingCharacterEllipsis.cs
- httpserverutility.cs
- NetworkStream.cs
- OleDbRowUpdatedEvent.cs
- WindowsImpersonationContext.cs
- SiteMapNode.cs
- NullableDecimalSumAggregationOperator.cs
- RetrieveVirtualItemEventArgs.cs
- BinarySerializer.cs
- Rectangle.cs
- ParseChildrenAsPropertiesAttribute.cs
- HostedTransportConfigurationManager.cs
- XNodeValidator.cs
- METAHEADER.cs
- DataSourceXmlAttributeAttribute.cs
- CompletionCallbackWrapper.cs
- DataExpression.cs
- FixedDocumentPaginator.cs
- ServiceHostingEnvironment.cs
- DbConnectionClosed.cs
- QueryOperator.cs
- DiscoveryExceptionDictionary.cs
- XsdDataContractExporter.cs
- updatecommandorderer.cs
- RuntimeWrappedException.cs
- SwitchLevelAttribute.cs
- EntityCollection.cs
- InstanceCreationEditor.cs
- Splitter.cs
- FontWeight.cs
- EntityConnectionStringBuilder.cs
- Int32CollectionConverter.cs
- ToolStripSplitStackLayout.cs
- SelectionWordBreaker.cs
- WebHttpBehavior.cs
- Helper.cs
- Style.cs
- NamespaceInfo.cs
- HtmlInputSubmit.cs
- EqualityArray.cs
- ToolBarButtonClickEvent.cs
- OdbcDataReader.cs
- XmlWrappingReader.cs
- DataGridViewHeaderCell.cs