Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / DataGridViewComboBoxColumnDesigner.cs / 1 / DataGridViewComboBoxColumnDesigner.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms.Design { using System.Design; using System.ComponentModel; using System.Diagnostics; using System; using System.Collections; using System.Windows.Forms; using System.Data; using System.ComponentModel.Design; using System.Drawing; using Microsoft.Win32; using System.Windows.Forms.ComponentModel; ////// /// internal class DataGridViewComboBoxColumnDesigner : DataGridViewColumnDesigner { static BindingContext bc; private string ValueMember { get { DataGridViewComboBoxColumn col = (DataGridViewComboBoxColumn) this.Component; return col.ValueMember; } set { DataGridViewComboBoxColumn col = (DataGridViewComboBoxColumn) this.Component; if (col.DataSource == null) { return; } if (ValidDataMember(col.DataSource, value)) { col.ValueMember = value; } } } private string DisplayMember { get { DataGridViewComboBoxColumn col = (DataGridViewComboBoxColumn) this.Component; return col.DisplayMember; } set { DataGridViewComboBoxColumn col = (DataGridViewComboBoxColumn) this.Component; if (col.DataSource == null) { return; } if (ValidDataMember(col.DataSource, value)) { col.DisplayMember = value; } } } private bool ShouldSerializeDisplayMember() { DataGridViewComboBoxColumn col = (DataGridViewComboBoxColumn) this.Component; return !String.IsNullOrEmpty(col.DisplayMember); } private bool ShouldSerializeValueMember() { DataGridViewComboBoxColumn col = (DataGridViewComboBoxColumn) this.Component; return !String.IsNullOrEmpty(col.ValueMember); } private static bool ValidDataMember(object dataSource, string dataMember) { if (String.IsNullOrEmpty(dataMember)) { // a null string is a valid value return true; } if (bc == null) { bc = new BindingContext(); } // // scrub the hashTable inside the BindingContext every time we access this method. // int count = ((ICollection) bc).Count; BindingMemberInfo bmi = new BindingMemberInfo(dataMember); PropertyDescriptorCollection props = null; BindingManagerBase bmb; try { bmb = bc[dataSource, bmi.BindingPath]; } catch (System.ArgumentException) { return false; } if (bmb == null) { return false; } props = bmb.GetItemProperties(); if (props == null) { return false; } if (props[bmi.BindingField] == null) { return false; } return true; } protected override void PreFilterProperties(IDictionary properties) { base.PreFilterProperties(properties); PropertyDescriptor prop = (PropertyDescriptor) properties["ValueMember"]; if (prop != null) { properties["ValueMember"] = TypeDescriptor.CreateProperty(typeof(DataGridViewComboBoxColumnDesigner), prop, new Attribute[0]); } prop = (PropertyDescriptor) properties["DisplayMember"]; if (prop != null) { properties["DisplayMember"] = TypeDescriptor.CreateProperty(typeof(DataGridViewComboBoxColumnDesigner), prop, new Attribute[0]); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Provides a base designer for data grid view columns. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Animatable.cs
- TemplateControlCodeDomTreeGenerator.cs
- SettingsProviderCollection.cs
- WarningException.cs
- XslAst.cs
- FormViewPageEventArgs.cs
- ToolStripMenuItem.cs
- AdPostCacheSubstitution.cs
- XmlTextAttribute.cs
- MenuItemStyleCollection.cs
- COSERVERINFO.cs
- Rect3D.cs
- Material.cs
- DynamicPropertyReader.cs
- EmptyElement.cs
- MbpInfo.cs
- MetadataPropertyAttribute.cs
- XmlLangPropertyAttribute.cs
- EntityDescriptor.cs
- Dispatcher.cs
- KeyPullup.cs
- ExpandedProjectionNode.cs
- MsmqProcessProtocolHandler.cs
- BuildProvider.cs
- FormatException.cs
- cookie.cs
- StyleXamlParser.cs
- InternalDispatchObject.cs
- Padding.cs
- XsdBuildProvider.cs
- TileBrush.cs
- CodeGroup.cs
- BackStopAuthenticationModule.cs
- Marshal.cs
- PasswordTextContainer.cs
- DataGridViewImageColumn.cs
- DataGridItemCollection.cs
- StateInitializationDesigner.cs
- DesignerActionUI.cs
- UICuesEvent.cs
- DefaultCommandExtensionCallback.cs
- CodeCompileUnit.cs
- AssociationEndMember.cs
- FixedSOMTableRow.cs
- CodeGotoStatement.cs
- Content.cs
- TextEndOfLine.cs
- NameValueFileSectionHandler.cs
- TypedTableBase.cs
- SpStreamWrapper.cs
- ArgumentNullException.cs
- DataFieldEditor.cs
- WmpBitmapEncoder.cs
- MultiSelectRootGridEntry.cs
- WorkflowTraceTransfer.cs
- ThreadStartException.cs
- ThreadPool.cs
- AuthorizationRuleCollection.cs
- DataGridColumnHeader.cs
- StretchValidation.cs
- Walker.cs
- SqlNamer.cs
- InfocardChannelParameter.cs
- PropertyEntry.cs
- Viewport3DVisual.cs
- MouseWheelEventArgs.cs
- RequestStatusBarUpdateEventArgs.cs
- PropertyGeneratedEventArgs.cs
- CompiledRegexRunner.cs
- DataControlButton.cs
- Border.cs
- FixUpCollection.cs
- ChangeTracker.cs
- SQLDecimalStorage.cs
- HealthMonitoringSectionHelper.cs
- DynamicObjectAccessor.cs
- VerifyHashRequest.cs
- Flattener.cs
- DnsEndPoint.cs
- SHA256.cs
- ElementHost.cs
- XpsPackagingPolicy.cs
- CurrentTimeZone.cs
- ConfigurationStrings.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- MessageSmuggler.cs
- DataError.cs
- FilterUserControlBase.cs
- RegexInterpreter.cs
- Encoder.cs
- ApplicationFileCodeDomTreeGenerator.cs
- TraceContext.cs
- InstancePersistenceCommandException.cs
- VirtualizingStackPanel.cs
- CollectionsUtil.cs
- RuntimeHandles.cs
- StatusBarItem.cs
- DataGridTextBoxColumn.cs
- CalendarSelectionChangedEventArgs.cs
- DataGridViewCellStateChangedEventArgs.cs