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;
///
///
/// [To be supplied.]
///
[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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Blend.cs
- TransformGroup.cs
- Point3DCollection.cs
- ExpressionConverter.cs
- SessionParameter.cs
- CuspData.cs
- RequestCacheManager.cs
- HitTestResult.cs
- DetailsViewDeletedEventArgs.cs
- HttpRequestCacheValidator.cs
- Quaternion.cs
- WebBrowserDesigner.cs
- ContextMenuStrip.cs
- UInt32.cs
- MediaPlayerState.cs
- WebPartMinimizeVerb.cs
- DelegateHelpers.cs
- MetafileHeader.cs
- IDReferencePropertyAttribute.cs
- ExtentCqlBlock.cs
- SecurityUniqueId.cs
- SyndicationItemFormatter.cs
- Compiler.cs
- AdCreatedEventArgs.cs
- DocumentViewerAutomationPeer.cs
- ConsumerConnectionPoint.cs
- DataBoundControlParameterTarget.cs
- PartitionerQueryOperator.cs
- RelOps.cs
- CommandConverter.cs
- StreamingContext.cs
- TreeView.cs
- StateManagedCollection.cs
- EtwTrace.cs
- BindStream.cs
- DeclaredTypeValidatorAttribute.cs
- WindowsScroll.cs
- BatchParser.cs
- Automation.cs
- KoreanLunisolarCalendar.cs
- XsltFunctions.cs
- ReflectionPermission.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- NumberSubstitution.cs
- ProtocolsConfiguration.cs
- ThreadAttributes.cs
- TreeNodeCollection.cs
- CalendarButton.cs
- RegistryDataKey.cs
- Quad.cs
- CodeAttributeDeclaration.cs
- SettingsContext.cs
- LocatorManager.cs
- NameValuePermission.cs
- HostProtectionPermission.cs
- TcpSocketManager.cs
- EntityUtil.cs
- CustomAttributeFormatException.cs
- FormViewInsertEventArgs.cs
- WebPartTransformerCollection.cs
- CustomAttributeBuilder.cs
- NameNode.cs
- NetNamedPipeSecurity.cs
- KnownBoxes.cs
- PackWebRequestFactory.cs
- DbDeleteCommandTree.cs
- FileDialogCustomPlace.cs
- IteratorFilter.cs
- CellRelation.cs
- followingquery.cs
- MenuItemStyleCollection.cs
- ProxyHelper.cs
- ValueOfAction.cs
- SystemColorTracker.cs
- CalendarDateRangeChangingEventArgs.cs
- SqlProviderManifest.cs
- XmlTypeAttribute.cs
- EdmConstants.cs
- StylusShape.cs
- ButtonFlatAdapter.cs
- httpapplicationstate.cs
- SafeTimerHandle.cs
- dbenumerator.cs
- SqlCacheDependency.cs
- FlowDocumentReader.cs
- DataRecordInternal.cs
- SubqueryRules.cs
- TableParagraph.cs
- ListBoxDesigner.cs
- XmlCharCheckingReader.cs
- Scene3D.cs
- XamlSerializerUtil.cs
- DataColumnChangeEvent.cs
- Misc.cs
- GradientBrush.cs
- CompiledAction.cs
- xmlfixedPageInfo.cs
- LinkUtilities.cs
- HotSpotCollection.cs
- ResourceManagerWrapper.cs