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
- ColumnMapCopier.cs
- ArraySubsetEnumerator.cs
- Vars.cs
- NumericUpDownAccelerationCollection.cs
- SqlMethodTransformer.cs
- ValueExpressions.cs
- RepeatBehaviorConverter.cs
- ColorTransformHelper.cs
- UInt64Converter.cs
- FontWeights.cs
- ValidatorAttribute.cs
- LexicalChunk.cs
- EncoderBestFitFallback.cs
- SmiEventSink_Default.cs
- EditBehavior.cs
- SapiRecoInterop.cs
- StorageComplexPropertyMapping.cs
- OleDbConnection.cs
- BrushValueSerializer.cs
- BinaryUtilClasses.cs
- XmlEnumAttribute.cs
- FormatConvertedBitmap.cs
- WebException.cs
- DbgUtil.cs
- SqlDataSourceTableQuery.cs
- DocumentReferenceCollection.cs
- MultiAsyncResult.cs
- XmlAttributeProperties.cs
- TriggerCollection.cs
- IISUnsafeMethods.cs
- EditorAttributeInfo.cs
- Opcode.cs
- IntSecurity.cs
- PersonalizationState.cs
- TabletDeviceInfo.cs
- SamlAuthorityBinding.cs
- EventManager.cs
- XmlValidatingReader.cs
- BamlCollectionHolder.cs
- SqlDataSourceCommandEventArgs.cs
- DetailsViewDeletedEventArgs.cs
- TextSegment.cs
- HandleCollector.cs
- FixedStringLookup.cs
- WorkflowMarkupElementEventArgs.cs
- SizeFConverter.cs
- RenderOptions.cs
- ConnectionProviderAttribute.cs
- SystemFonts.cs
- TrueReadOnlyCollection.cs
- ConstraintCollection.cs
- FirstMatchCodeGroup.cs
- RsaSecurityKey.cs
- DirtyTextRange.cs
- IteratorFilter.cs
- WebPartTransformerAttribute.cs
- DispatcherFrame.cs
- AliasedSlot.cs
- OdbcParameterCollection.cs
- DocumentApplicationJournalEntry.cs
- SqlDependencyListener.cs
- CreateUserWizard.cs
- VirtualizingStackPanel.cs
- SmtpReplyReader.cs
- LinearGradientBrush.cs
- TextLineBreak.cs
- DocumentCollection.cs
- XMLSyntaxException.cs
- TextDecoration.cs
- Light.cs
- ImmutablePropertyDescriptorGridEntry.cs
- SqlCharStream.cs
- BinaryMethodMessage.cs
- Color.cs
- CatalogZone.cs
- AmbientProperties.cs
- MultiSelector.cs
- Int16AnimationBase.cs
- FormsAuthenticationCredentials.cs
- IsolatedStorageFileStream.cs
- DeliveryStrategy.cs
- GridViewDeleteEventArgs.cs
- MdImport.cs
- RichTextBoxContextMenu.cs
- CustomUserNameSecurityTokenAuthenticator.cs
- TabPage.cs
- Comparer.cs
- LogEntry.cs
- MatrixTransform.cs
- FixedSOMTableRow.cs
- MatrixTransform3D.cs
- ConsoleKeyInfo.cs
- ServiceEndpointElement.cs
- FramingFormat.cs
- BufferBuilder.cs
- MiniAssembly.cs
- DependencyPropertyAttribute.cs
- EncryptedXml.cs
- RsaSecurityToken.cs
- IChannel.cs