Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / DesignBindingConverter.cs / 1 / DesignBindingConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms.Design { using System; using System.Design; using System.Collections; using System.ComponentModel; using System.Globalization; ////// /// internal class DesignBindingConverter : TypeConverter { public override bool CanConvertTo(ITypeDescriptorContext context, Type sourceType) { return (typeof(string) == sourceType); } public override bool CanConvertFrom(ITypeDescriptorContext context, Type destType) { return (typeof(string) == destType); } public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type sourceType) { DesignBinding designBinding = (DesignBinding) value; if (designBinding.IsNull) { return SR.GetString(SR.DataGridNoneString); } else { string name = ""; if (designBinding.DataSource is IComponent) { IComponent component = (IComponent) designBinding.DataSource; if (component.Site != null) { name = component.Site.Name; } } if (name.Length == 0) { if (designBinding.DataSource is IListSource || designBinding.DataSource is IList || designBinding.DataSource is Array) { name = "(List)"; } else { string typeName = TypeDescriptor.GetClassName(designBinding.DataSource); int lastDot = typeName.LastIndexOf('.'); if (lastDot != -1) { typeName = typeName.Substring(lastDot + 1); } name = string.Format(CultureInfo.CurrentCulture, "({0})", typeName); } } name += " - " + designBinding.DataMember; return name; } } public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { string text = (string) value; if (text == null || text.Length == 0 || String.Compare(text,SR.GetString(SR.DataGridNoneString),true, CultureInfo.CurrentCulture) == 0) { return DesignBinding.Null; } else { int dash = text.IndexOf("-"); if (dash == -1) { throw new ArgumentException(SR.GetString(SR.DesignBindingBadParseString, text)); } string componentName = text.Substring(0,dash - 1).Trim(); string dataMember = text.Substring(dash + 1).Trim(); if (context == null || context.Container == null) { throw new ArgumentException(SR.GetString(SR.DesignBindingContextRequiredWhenParsing, text)); } IContainer container = DesignerUtils.CheckForNestedContainer(context.Container); // ...necessary to support SplitterPanel components IComponent dataSource = container.Components[componentName]; if (dataSource == null) { if (String.Equals(componentName, "(List)", StringComparison.OrdinalIgnoreCase)) { return null; } throw new ArgumentException(SR.GetString(SR.DesignBindingComponentNotFound, componentName)); } return new DesignBinding(dataSource,dataMember); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// Converts data bindings for use in the design-time environment. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpCachePolicyElement.cs
- ConfigXmlSignificantWhitespace.cs
- CompilerWrapper.cs
- Comparer.cs
- StylusOverProperty.cs
- SortQueryOperator.cs
- GiveFeedbackEvent.cs
- HttpApplicationFactory.cs
- NotifyCollectionChangedEventArgs.cs
- RegisterResponseInfo.cs
- ContentElementCollection.cs
- Parser.cs
- ReflectionUtil.cs
- RequestCacheManager.cs
- FixedPageProcessor.cs
- _SingleItemRequestCache.cs
- WebMessageFormatHelper.cs
- DesignerCategoryAttribute.cs
- OracleBoolean.cs
- LayoutTableCell.cs
- XmlSchemaObjectTable.cs
- SQLSingle.cs
- StringAttributeCollection.cs
- OdbcRowUpdatingEvent.cs
- XmlNodeComparer.cs
- TextEndOfSegment.cs
- __ComObject.cs
- XsdCachingReader.cs
- TreeWalker.cs
- unsafenativemethodsother.cs
- Wildcard.cs
- OdbcFactory.cs
- EnvelopedSignatureTransform.cs
- MediaCommands.cs
- IntPtr.cs
- WebPartConnectionsEventArgs.cs
- ImageButton.cs
- ExpressionList.cs
- BlobPersonalizationState.cs
- TemplatePartAttribute.cs
- ClaimSet.cs
- TextFormatterHost.cs
- UnmanagedMemoryStreamWrapper.cs
- MenuAutomationPeer.cs
- RegexFCD.cs
- OleDbMetaDataFactory.cs
- TagNameToTypeMapper.cs
- WebPartMenu.cs
- PrincipalPermissionMode.cs
- Schema.cs
- Repeater.cs
- ActivityCollectionMarkupSerializer.cs
- ErrorStyle.cs
- DynamicQueryableWrapper.cs
- Positioning.cs
- EncoderParameter.cs
- CharEnumerator.cs
- HMACSHA512.cs
- UnsafeNativeMethods.cs
- Pool.cs
- AvtEvent.cs
- TypeDescriptionProvider.cs
- MissingMemberException.cs
- ADMembershipUser.cs
- HiddenFieldPageStatePersister.cs
- QueryCursorEventArgs.cs
- LogWriteRestartAreaAsyncResult.cs
- wgx_render.cs
- PeerReferralPolicy.cs
- XDeferredAxisSource.cs
- InstanceData.cs
- CodeNamespaceImport.cs
- GridViewAutomationPeer.cs
- ConfigurationLoader.cs
- ToolStripProgressBar.cs
- TypeUnloadedException.cs
- HttpProfileGroupBase.cs
- FormatSettings.cs
- AssemblyBuilder.cs
- ScriptManager.cs
- JavaScriptSerializer.cs
- EntityDataSourceSelectingEventArgs.cs
- DataStorage.cs
- TransformGroup.cs
- BoundField.cs
- SessionViewState.cs
- FixedPosition.cs
- FileChangesMonitor.cs
- ConnectionConsumerAttribute.cs
- SplashScreen.cs
- MenuRendererStandards.cs
- SettingsPropertyCollection.cs
- UmAlQuraCalendar.cs
- FormViewModeEventArgs.cs
- ModelVisual3D.cs
- KnownTypesProvider.cs
- UserControlCodeDomTreeGenerator.cs
- typedescriptorpermission.cs
- FormView.cs
- Site.cs