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 / GridItem.cs / 1 / GridItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.IO; using System.Collections; using System.Globalization; using System.Windows.Forms; using System.Drawing; using System.Drawing.Design; using System.Windows.Forms.Design; using System.Windows.Forms.ComponentModel.Com2Interop; using System.ComponentModel; using System.ComponentModel.Design; using System.Windows.Forms.PropertyGridInternal; using System.Reflection; using System.Runtime.InteropServices; using Microsoft.Win32; ////// /// public abstract class GridItem { private object userData; ///Representaion of one row item in the PropertyGrid. These items represent the /// hierarchy of the grid's "tree-like" view and can be used to get information about /// the grid's state and contents. ///These objects should not be cached because they represent a snapshot of the PropertyGrid's state /// and may be disposed by grid activity. The PropertyGrid often recretates these objects internally even if /// it doesn't appear to change to the user. ///[ SRCategory(SR.CatData), Localizable(false), Bindable(true), SRDescription(SR.ControlTagDescr), DefaultValue(null), TypeConverter(typeof(StringConverter)), ] public object Tag { get { return userData; } set { userData = value; } } /// /// /// public abstract GridItemCollection GridItems { get; } ///Retrieves the child GridItems, if any, of this GridItem ////// /// public abstract GridItemType GridItemType { get; } ///Retrieves type of this GridItem, as a value from System.Windows.Forms.GridItemType ////// /// public abstract string Label { get; } ///Retrieves the text label of this GridItem. This may be different from the actual PropertyName. /// For GridItemType.Property GridItems, retrieve the PropertyDescriptor and check its Name property. ////// /// public abstract GridItem Parent { get; } ///Retrieves parent GridItem of this GridItem, if any ////// /// public abstract PropertyDescriptor PropertyDescriptor { get; } ///If this item is a GridItemType.Property GridItem, this retreives the System.ComponentModel.PropertyDescriptor that is /// associated with this GridItem. This can be used to retrieve infomration such as property Type, Name, or TypeConverter. ////// /// public abstract object Value { get; // note: we don't do set because of the value class semantics, etc. } ///Retrieves the current Value of this grid Item. This may be null. ////// /// public virtual bool Expandable { get { return false; } } ///Retreives whether the given property is expandable. ////// /// public virtual bool Expanded { get { return false; } set { throw new NotSupportedException(SR.GetString(SR.GridItemNotExpandable)); } } ///Retreives or sets whether the GridItem is in an expanded state. ////// /// public abstract bool Select(); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Attempts to select this GridItem in the PropertyGrid. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.IO; using System.Collections; using System.Globalization; using System.Windows.Forms; using System.Drawing; using System.Drawing.Design; using System.Windows.Forms.Design; using System.Windows.Forms.ComponentModel.Com2Interop; using System.ComponentModel; using System.ComponentModel.Design; using System.Windows.Forms.PropertyGridInternal; using System.Reflection; using System.Runtime.InteropServices; using Microsoft.Win32; ////// /// public abstract class GridItem { private object userData; ///Representaion of one row item in the PropertyGrid. These items represent the /// hierarchy of the grid's "tree-like" view and can be used to get information about /// the grid's state and contents. ///These objects should not be cached because they represent a snapshot of the PropertyGrid's state /// and may be disposed by grid activity. The PropertyGrid often recretates these objects internally even if /// it doesn't appear to change to the user. ///[ SRCategory(SR.CatData), Localizable(false), Bindable(true), SRDescription(SR.ControlTagDescr), DefaultValue(null), TypeConverter(typeof(StringConverter)), ] public object Tag { get { return userData; } set { userData = value; } } /// /// /// public abstract GridItemCollection GridItems { get; } ///Retrieves the child GridItems, if any, of this GridItem ////// /// public abstract GridItemType GridItemType { get; } ///Retrieves type of this GridItem, as a value from System.Windows.Forms.GridItemType ////// /// public abstract string Label { get; } ///Retrieves the text label of this GridItem. This may be different from the actual PropertyName. /// For GridItemType.Property GridItems, retrieve the PropertyDescriptor and check its Name property. ////// /// public abstract GridItem Parent { get; } ///Retrieves parent GridItem of this GridItem, if any ////// /// public abstract PropertyDescriptor PropertyDescriptor { get; } ///If this item is a GridItemType.Property GridItem, this retreives the System.ComponentModel.PropertyDescriptor that is /// associated with this GridItem. This can be used to retrieve infomration such as property Type, Name, or TypeConverter. ////// /// public abstract object Value { get; // note: we don't do set because of the value class semantics, etc. } ///Retrieves the current Value of this grid Item. This may be null. ////// /// public virtual bool Expandable { get { return false; } } ///Retreives whether the given property is expandable. ////// /// public virtual bool Expanded { get { return false; } set { throw new NotSupportedException(SR.GetString(SR.GridItemNotExpandable)); } } ///Retreives or sets whether the GridItem is in an expanded state. ////// /// public abstract bool Select(); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Attempts to select this GridItem in the PropertyGrid. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConstantCheck.cs
- TypeConstant.cs
- ObjectMemberMapping.cs
- PasswordPropertyTextAttribute.cs
- ArraySubsetEnumerator.cs
- QuaternionAnimation.cs
- QuotaThrottle.cs
- TemplateParser.cs
- OpCopier.cs
- AlignmentXValidation.cs
- DataGridDesigner.cs
- WebPermission.cs
- MailAddressParser.cs
- CheckBoxFlatAdapter.cs
- XmlUrlResolver.cs
- ZoomComboBox.cs
- ConnectionManagementSection.cs
- GetPageNumberCompletedEventArgs.cs
- SamlAudienceRestrictionCondition.cs
- MatrixCamera.cs
- GridViewRowEventArgs.cs
- Interfaces.cs
- DataGridLengthConverter.cs
- CompositeScriptReference.cs
- GuidelineCollection.cs
- ProjectionPlan.cs
- Drawing.cs
- Rect.cs
- ElementsClipboardData.cs
- Calendar.cs
- StateWorkerRequest.cs
- XsltConvert.cs
- AsyncCompletedEventArgs.cs
- StringUtil.cs
- LongPath.cs
- ConfigXmlSignificantWhitespace.cs
- Brushes.cs
- EmptyQuery.cs
- HideDisabledControlAdapter.cs
- CultureInfo.cs
- ProgressBar.cs
- AutomationFocusChangedEventArgs.cs
- HandlerFactoryCache.cs
- OdbcReferenceCollection.cs
- HashMembershipCondition.cs
- EventTrigger.cs
- OdbcConnectionOpen.cs
- thaishape.cs
- LabelLiteral.cs
- RijndaelManaged.cs
- TraceHwndHost.cs
- _NegotiateClient.cs
- SmtpReplyReaderFactory.cs
- FormatVersion.cs
- SqlNotificationRequest.cs
- DiscoveryClientChannelFactory.cs
- WhereQueryOperator.cs
- Roles.cs
- BigInt.cs
- ping.cs
- IdentifierCollection.cs
- TextContainerChangeEventArgs.cs
- DataSourceConverter.cs
- EnvelopedPkcs7.cs
- DataGridViewTextBoxColumn.cs
- Span.cs
- InfoCardBaseException.cs
- RequestCachePolicyConverter.cs
- TaskResultSetter.cs
- Compiler.cs
- AndCondition.cs
- MethodRental.cs
- PathFigureCollectionConverter.cs
- CompilerResults.cs
- BinaryObjectInfo.cs
- MaskPropertyEditor.cs
- XmlWrappingReader.cs
- cookiecollection.cs
- DataObjectAttribute.cs
- TextServicesHost.cs
- BasicExpressionVisitor.cs
- JumpTask.cs
- FrameworkElementFactoryMarkupObject.cs
- ParsedAttributeCollection.cs
- Calendar.cs
- TextFormatter.cs
- BitmapEffect.cs
- XmlEncoding.cs
- ThreadPool.cs
- DuplicateWaitObjectException.cs
- WebPartManager.cs
- ADConnectionHelper.cs
- WindowsFormsSynchronizationContext.cs
- SessionEndedEventArgs.cs
- ComponentManagerBroker.cs
- JsonFormatReaderGenerator.cs
- DesignerActionGlyph.cs
- SRGSCompiler.cs
- WindowsTitleBar.cs
- TextEndOfSegment.cs