Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / ItemCheckEvent.cs / 1305376 / ItemCheckEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.ComponentModel; using System.Drawing; using Microsoft.Win32; ////// /// [System.Runtime.InteropServices.ComVisible(true)] public class ItemCheckEventArgs : EventArgs { readonly int index; CheckState newValue; readonly CheckState currentValue; ////// Provides data for the ////// event. /// /// /// /// public ItemCheckEventArgs(int index, CheckState newCheckValue, CheckState currentValue) { this.index = index; this.newValue = newCheckValue; this.currentValue = currentValue; } ///[To be supplied.] ////// /// The index of the item that is about to change. /// public int Index { get { return index; } } ////// /// The proposed new value of the CheckBox. /// public CheckState NewValue { get { return newValue; } set { newValue = value; } } ////// /// The current state of the CheckBox. /// public CheckState CurrentValue { get { return currentValue; } } } } // 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
- complextypematerializer.cs
- ObjectViewQueryResultData.cs
- TimeoutHelper.cs
- PointCollectionConverter.cs
- LocatorPartList.cs
- SqlBooleanizer.cs
- ServicePointManager.cs
- FamilyMapCollection.cs
- TextSearch.cs
- TokenBasedSet.cs
- TypeListConverter.cs
- TargetException.cs
- StylusDownEventArgs.cs
- DockAndAnchorLayout.cs
- DBBindings.cs
- DebugViewWriter.cs
- PreviewPageInfo.cs
- EventSourceCreationData.cs
- XmlNodeReader.cs
- ConfigXmlText.cs
- JournalEntryListConverter.cs
- ColumnMap.cs
- ComplexType.cs
- DataColumn.cs
- SchemaRegistration.cs
- QueryOperatorEnumerator.cs
- HealthMonitoringSectionHelper.cs
- ListCollectionView.cs
- BindingsCollection.cs
- Journal.cs
- ValidatorCompatibilityHelper.cs
- InplaceBitmapMetadataWriter.cs
- SelectionItemProviderWrapper.cs
- BinaryReader.cs
- TraceSwitch.cs
- TemplateControlCodeDomTreeGenerator.cs
- XmlSchemaIdentityConstraint.cs
- Transform.cs
- XPathChildIterator.cs
- CodeObject.cs
- MutableAssemblyCacheEntry.cs
- InvalidComObjectException.cs
- CounterCreationData.cs
- OuterGlowBitmapEffect.cs
- TemplatePropertyEntry.cs
- FileDialogCustomPlacesCollection.cs
- ComPlusTraceRecord.cs
- FileNotFoundException.cs
- OleDbException.cs
- EdmScalarPropertyAttribute.cs
- returneventsaver.cs
- WinCategoryAttribute.cs
- XamlTemplateSerializer.cs
- Collection.cs
- ElementNotAvailableException.cs
- ParseHttpDate.cs
- SplitterPanel.cs
- ExtentJoinTreeNode.cs
- RelatedView.cs
- Freezable.cs
- HttpClientProtocol.cs
- Utilities.cs
- DivideByZeroException.cs
- cookieexception.cs
- GridView.cs
- TransformDescriptor.cs
- DataGridHelper.cs
- DataKey.cs
- Application.cs
- PtsPage.cs
- DataControlLinkButton.cs
- TableLayoutStyle.cs
- EdmScalarPropertyAttribute.cs
- PartialCachingAttribute.cs
- ProxyOperationRuntime.cs
- DocumentOrderComparer.cs
- ConsumerConnectionPointCollection.cs
- WindowsFormsSynchronizationContext.cs
- DataFieldConverter.cs
- DrawingImage.cs
- CompressedStack.cs
- ClientSideProviderDescription.cs
- DesignerActionVerbItem.cs
- CatalogPartCollection.cs
- SqlReferenceCollection.cs
- SubstitutionResponseElement.cs
- DoubleAnimationUsingKeyFrames.cs
- filewebrequest.cs
- Condition.cs
- ConfigurationPermission.cs
- XmlEnumAttribute.cs
- GeometryGroup.cs
- CngAlgorithmGroup.cs
- HttpResponseWrapper.cs
- KeyEventArgs.cs
- DetailsViewDeleteEventArgs.cs
- WrapPanel.cs
- CompiledXpathExpr.cs
- BindingSourceDesigner.cs
- Tuple.cs