Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / TreeNodeConverter.cs / 1 / TreeNodeConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System.Runtime.Serialization.Formatters; using System.Runtime.Remoting; using System.Runtime.InteropServices; using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Drawing; using System.Diagnostics; using System.Globalization; using System.Reflection; ////// /// TreeNodeConverter is a class that can be used to convert /// TreeNode objects from one data type to another. Access this /// class through the TypeDescriptor. /// public class TreeNodeConverter : TypeConverter { ////// /// public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if (destinationType == typeof(InstanceDescriptor)) { return true; } return base.CanConvertTo(context, destinationType); } ///Gets a value indicating whether this converter can /// convert an object to the given destination type using the context. ////// /// Converts the given object to another type. The most common types to convert /// are to and from a string object. The default implementation will make a call /// to ToString on the object if the object is valid and if the destination /// type is string. If this cannot convert to the desitnation type, this will /// throw a NotSupportedException. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } if (destinationType == typeof(InstanceDescriptor) && value is TreeNode) { TreeNode node = (TreeNode)value; MemberInfo info = null; object[] args = null; if (node.ImageIndex == -1 || node.SelectedImageIndex == -1) { if (node.Nodes.Count == 0) { info = typeof(TreeNode).GetConstructor(new Type[] {typeof(string)}); args = new object[] {node.Text}; } else { info = typeof(TreeNode).GetConstructor(new Type[] {typeof(string), typeof(TreeNode[])}); TreeNode[] nodesArray = new TreeNode[node.Nodes.Count]; node.Nodes.CopyTo(nodesArray, 0); args = new object[] {node.Text, nodesArray}; } } else { if (node.Nodes.Count == 0) { info = typeof(TreeNode).GetConstructor(new Type[] { typeof(string), typeof(int), typeof(int)}); args = new object[] { node.Text, node.ImageIndex, node.SelectedImageIndex}; } else { info = typeof(TreeNode).GetConstructor(new Type[] { typeof(string), typeof(int), typeof(int), typeof(TreeNode[])}); TreeNode[] nodesArray = new TreeNode[node.Nodes.Count]; node.Nodes.CopyTo(nodesArray, 0); args = new object[] { node.Text, node.ImageIndex, node.SelectedImageIndex, nodesArray}; } } if (info != null) { return new InstanceDescriptor(info, args, false); } } return base.ConvertTo(context, culture, value, destinationType); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System.Runtime.Serialization.Formatters; using System.Runtime.Remoting; using System.Runtime.InteropServices; using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Drawing; using System.Diagnostics; using System.Globalization; using System.Reflection; ////// /// TreeNodeConverter is a class that can be used to convert /// TreeNode objects from one data type to another. Access this /// class through the TypeDescriptor. /// public class TreeNodeConverter : TypeConverter { ////// /// public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if (destinationType == typeof(InstanceDescriptor)) { return true; } return base.CanConvertTo(context, destinationType); } ///Gets a value indicating whether this converter can /// convert an object to the given destination type using the context. ////// /// Converts the given object to another type. The most common types to convert /// are to and from a string object. The default implementation will make a call /// to ToString on the object if the object is valid and if the destination /// type is string. If this cannot convert to the desitnation type, this will /// throw a NotSupportedException. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } if (destinationType == typeof(InstanceDescriptor) && value is TreeNode) { TreeNode node = (TreeNode)value; MemberInfo info = null; object[] args = null; if (node.ImageIndex == -1 || node.SelectedImageIndex == -1) { if (node.Nodes.Count == 0) { info = typeof(TreeNode).GetConstructor(new Type[] {typeof(string)}); args = new object[] {node.Text}; } else { info = typeof(TreeNode).GetConstructor(new Type[] {typeof(string), typeof(TreeNode[])}); TreeNode[] nodesArray = new TreeNode[node.Nodes.Count]; node.Nodes.CopyTo(nodesArray, 0); args = new object[] {node.Text, nodesArray}; } } else { if (node.Nodes.Count == 0) { info = typeof(TreeNode).GetConstructor(new Type[] { typeof(string), typeof(int), typeof(int)}); args = new object[] { node.Text, node.ImageIndex, node.SelectedImageIndex}; } else { info = typeof(TreeNode).GetConstructor(new Type[] { typeof(string), typeof(int), typeof(int), typeof(TreeNode[])}); TreeNode[] nodesArray = new TreeNode[node.Nodes.Count]; node.Nodes.CopyTo(nodesArray, 0); args = new object[] { node.Text, node.ImageIndex, node.SelectedImageIndex, nodesArray}; } } if (info != null) { return new InstanceDescriptor(info, args, false); } } return base.ConvertTo(context, culture, value, destinationType); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DomainConstraint.cs
- MetadataItemCollectionFactory.cs
- ToolStripPanelDesigner.cs
- DesignerView.cs
- HttpCapabilitiesBase.cs
- QueryableDataSourceHelper.cs
- SelectedDatesCollection.cs
- BinaryKeyIdentifierClause.cs
- RadioButtonPopupAdapter.cs
- PixelFormatConverter.cs
- WebPartConnectionsEventArgs.cs
- ProviderSettings.cs
- TextBox.cs
- Timer.cs
- SqlInfoMessageEvent.cs
- ReflectionUtil.cs
- ToolStripItemClickedEventArgs.cs
- CompiledQuery.cs
- InternalTypeHelper.cs
- MatcherBuilder.cs
- UseAttributeSetsAction.cs
- SrgsElement.cs
- PageCopyCount.cs
- DataKeyArray.cs
- ActivationServices.cs
- GetImportedCardRequest.cs
- PageParser.cs
- HashCodeCombiner.cs
- TextBoxAutoCompleteSourceConverter.cs
- Figure.cs
- PlainXmlSerializer.cs
- ProgressBar.cs
- IndependentAnimationStorage.cs
- TripleDES.cs
- HttpCapabilitiesSectionHandler.cs
- CssStyleCollection.cs
- FormViewRow.cs
- SecureUICommand.cs
- StoreItemCollection.cs
- ListViewInsertedEventArgs.cs
- ServicePointManager.cs
- ResourceReader.cs
- WebPageTraceListener.cs
- XmlAttributeCache.cs
- _NtlmClient.cs
- CodeVariableReferenceExpression.cs
- InteropDesigner.xaml.cs
- AssemblyBuilderData.cs
- HexParser.cs
- EventSinkActivity.cs
- DataGridColumnCollection.cs
- CodeTypeMemberCollection.cs
- GroupBoxRenderer.cs
- PeerReferralPolicy.cs
- ProofTokenCryptoHandle.cs
- SignedXml.cs
- ByteStack.cs
- PerformanceCounterLib.cs
- RenderTargetBitmap.cs
- XmlSchemaAnnotation.cs
- ErasingStroke.cs
- VirtualizingStackPanel.cs
- XmlSchemaException.cs
- EdmFunction.cs
- TdsParserSessionPool.cs
- HideDisabledControlAdapter.cs
- CompensateDesigner.cs
- OperationExecutionFault.cs
- CapacityStreamGeometryContext.cs
- VectorValueSerializer.cs
- FlowDocument.cs
- WebControlAdapter.cs
- CompilerGlobalScopeAttribute.cs
- SourceInterpreter.cs
- WebBrowserDocumentCompletedEventHandler.cs
- StrongNamePublicKeyBlob.cs
- StaticContext.cs
- EntityDataSourceMemberPath.cs
- MetadataPropertyCollection.cs
- PerformanceCounterPermissionEntryCollection.cs
- FtpRequestCacheValidator.cs
- TypeDescriptionProvider.cs
- ProfileSection.cs
- AnyAllSearchOperator.cs
- Oid.cs
- BinaryObjectReader.cs
- Part.cs
- ExtentCqlBlock.cs
- MarkedHighlightComponent.cs
- CallTemplateAction.cs
- WCFServiceClientProxyGenerator.cs
- SqlCommand.cs
- HttpListenerException.cs
- LicenseProviderAttribute.cs
- ListSourceHelper.cs
- ExtractCollection.cs
- DataReceivedEventArgs.cs
- Content.cs
- OracleInfoMessageEventArgs.cs
- TextEmbeddedObject.cs