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
- TypeBrowser.xaml.cs
- CodeEventReferenceExpression.cs
- SystemInformation.cs
- FactoryMaker.cs
- RelationshipConverter.cs
- RtfControls.cs
- LabelAutomationPeer.cs
- HttpWebResponse.cs
- Permission.cs
- ZipIOCentralDirectoryBlock.cs
- Deserializer.cs
- SecurityRuntime.cs
- SoapMessage.cs
- DuplicateWaitObjectException.cs
- FileClassifier.cs
- RoutedCommand.cs
- ToolStripGripRenderEventArgs.cs
- DataServiceHostFactory.cs
- BatchParser.cs
- CompareValidator.cs
- UInt32.cs
- CmsInterop.cs
- IndependentlyAnimatedPropertyMetadata.cs
- HtmlContainerControl.cs
- TextShapeableCharacters.cs
- TimeEnumHelper.cs
- ChtmlPageAdapter.cs
- _UriTypeConverter.cs
- SerializationUtilities.cs
- ToolStripManager.cs
- RegistrySecurity.cs
- MappingItemCollection.cs
- HttpCapabilitiesBase.cs
- GenerateHelper.cs
- CommandTreeTypeHelper.cs
- SetState.cs
- PageRequestManager.cs
- DialogResultConverter.cs
- DataGridViewTopLeftHeaderCell.cs
- SamlAttributeStatement.cs
- WhitespaceReader.cs
- IndexedString.cs
- CultureTable.cs
- DataDocumentXPathNavigator.cs
- Int64KeyFrameCollection.cs
- _SecureChannel.cs
- StateItem.cs
- HttpStaticObjectsCollectionBase.cs
- AppLevelCompilationSectionCache.cs
- DrawToolTipEventArgs.cs
- AuthenticationService.cs
- MonthCalendar.cs
- FocusTracker.cs
- Column.cs
- InlineUIContainer.cs
- X509Certificate2Collection.cs
- MetricEntry.cs
- TreeNodeClickEventArgs.cs
- EdmSchemaError.cs
- XmlElement.cs
- Overlapped.cs
- ScriptRegistrationManager.cs
- AspCompat.cs
- NetPipeSectionData.cs
- CheckedListBox.cs
- ScrollChangedEventArgs.cs
- TerminatorSinks.cs
- SqlMethodAttribute.cs
- FormsAuthenticationCredentials.cs
- PerformanceCounterPermissionAttribute.cs
- ExpressionWriter.cs
- StateMachineDesignerPaint.cs
- BaseTemplatedMobileComponentEditor.cs
- ProfileSection.cs
- TextDocumentView.cs
- Base64Stream.cs
- CrossAppDomainChannel.cs
- SQLGuidStorage.cs
- CaseInsensitiveOrdinalStringComparer.cs
- DateTimeFormat.cs
- SqlResolver.cs
- DataSourceXmlClassAttribute.cs
- SqlBuffer.cs
- BaseTreeIterator.cs
- XmlSchemaObjectTable.cs
- CacheVirtualItemsEvent.cs
- DispatcherExceptionEventArgs.cs
- TextServicesProperty.cs
- FixedTextBuilder.cs
- EntityContainerEmitter.cs
- RoleManagerModule.cs
- StreamUpdate.cs
- DeploymentSection.cs
- HttpCachePolicyElement.cs
- MaskInputRejectedEventArgs.cs
- ContainerFilterService.cs
- CodeLinePragma.cs
- Int16Animation.cs
- StyleXamlTreeBuilder.cs
- PseudoWebRequest.cs