Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / DataGridViewColumnTypeEditor.cs / 1 / DataGridViewColumnTypeEditor.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms.Design { using System.Design; using System; using System.ComponentModel; using System.ComponentModel.Design; using System.Drawing; using System.Drawing.Design; internal class DataGridViewColumnTypeEditor : UITypeEditor { // FxCop made me add this constructor. private DataGridViewColumnTypeEditor() : base() {} DataGridViewColumnTypePicker columnTypePicker = null; public override bool IsDropDownResizable { get { return true; } } public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) { if (provider != null) { IWindowsFormsEditorService edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService)); if (edSvc != null && context.Instance != null) { if (this.columnTypePicker == null) { this.columnTypePicker = new DataGridViewColumnTypePicker(); } DataGridViewColumnCollectionDialog.ListBoxItem item = (DataGridViewColumnCollectionDialog.ListBoxItem) context.Instance; IDesignerHost host = (IDesignerHost) provider.GetService(typeof(IDesignerHost)); ITypeDiscoveryService discoveryService = null; if (host != null) { discoveryService = (ITypeDiscoveryService) host.GetService(typeof(ITypeDiscoveryService)); } columnTypePicker.Start(edSvc, discoveryService, item.DataGridViewColumn.GetType()); edSvc.DropDownControl(columnTypePicker); if (columnTypePicker.SelectedType != null) { value = columnTypePicker.SelectedType; } } } return value; } public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context) { return UITypeEditorEditStyle.DropDown; } } } // 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
- Compiler.cs
- SlotInfo.cs
- ToolStripItemClickedEventArgs.cs
- SqlDataSourceQueryEditorForm.cs
- Point3D.cs
- StrokeNodeEnumerator.cs
- _AutoWebProxyScriptHelper.cs
- MULTI_QI.cs
- RestHandler.cs
- EntryPointNotFoundException.cs
- PixelFormats.cs
- Vector.cs
- SafeArchiveContext.cs
- CheckBoxList.cs
- WindowsGraphics.cs
- GenericEnumerator.cs
- QueryOutputWriter.cs
- ConfigurationLocation.cs
- Rfc2898DeriveBytes.cs
- MaterialGroup.cs
- FocusChangedEventArgs.cs
- SoapIgnoreAttribute.cs
- ProfilePropertySettings.cs
- ToolTipAutomationPeer.cs
- WebBrowserHelper.cs
- ThreadStartException.cs
- InputGestureCollection.cs
- _AutoWebProxyScriptHelper.cs
- CaseCqlBlock.cs
- AttachmentCollection.cs
- PageClientProxyGenerator.cs
- XmlSchemaAll.cs
- TypeGeneratedEventArgs.cs
- TemplateXamlTreeBuilder.cs
- WaitHandle.cs
- DesignBinding.cs
- CompModSwitches.cs
- InOutArgumentConverter.cs
- MenuItem.cs
- DrawingGroup.cs
- BamlLocalizableResource.cs
- RotateTransform3D.cs
- SelectionWordBreaker.cs
- DBDataPermissionAttribute.cs
- XmlSerializationWriter.cs
- CompilerResults.cs
- XmlUtf8RawTextWriter.cs
- TrackingProfileManager.cs
- SinglePageViewer.cs
- Graphics.cs
- FixUp.cs
- CheckBoxDesigner.cs
- CqlLexer.cs
- XmlSchemaCollection.cs
- Matrix3DConverter.cs
- XDRSchema.cs
- TextTreeExtractElementUndoUnit.cs
- PermissionSet.cs
- FormsAuthenticationUser.cs
- DataGridViewCheckBoxCell.cs
- SQLDoubleStorage.cs
- ListView.cs
- Win32.cs
- DynamicUpdateCommand.cs
- ProcessModule.cs
- WindowsGrip.cs
- DataStreams.cs
- ResourceDescriptionAttribute.cs
- EdmFunction.cs
- ItemList.cs
- GroupBoxDesigner.cs
- RemoteHelper.cs
- SqlAggregateChecker.cs
- HostExecutionContextManager.cs
- ExpressionBuilderCollection.cs
- Html32TextWriter.cs
- SuppressIldasmAttribute.cs
- HttpStreams.cs
- CharacterBuffer.cs
- CancellationHandler.cs
- UseLicense.cs
- MulticastNotSupportedException.cs
- LocatorPartList.cs
- DnsEndPoint.cs
- TableCellCollection.cs
- EventHandlers.cs
- DragDrop.cs
- Border.cs
- AggregateNode.cs
- ConfigErrorGlyph.cs
- TimeoutValidationAttribute.cs
- PanelStyle.cs
- KeysConverter.cs
- ConfigurationManagerInternalFactory.cs
- RenderOptions.cs
- BamlBinaryWriter.cs
- DependencyObjectType.cs
- PageSettings.cs
- ProcessHost.cs
- OptimisticConcurrencyException.cs