Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / SplitterCancelEvent.cs / 1 / SplitterCancelEvent.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; ////// /// public class SplitterCancelEventArgs : CancelEventArgs { private readonly int mouseCursorX; private readonly int mouseCursorY; private int splitX; private int splitY; ////// Provides data for splitter events. /// ////// /// public SplitterCancelEventArgs(int mouseCursorX, int mouseCursorY, int splitX, int splitY) : base (false) { this.mouseCursorX = mouseCursorX; this.mouseCursorY = mouseCursorY; this.splitX = splitX; this.splitY = splitY; } ////// Initializes an instance of the ///class with the specified coordinates /// of the mouse pointer and the upper-left corner of the . /// /// /// public int MouseCursorX { get { return mouseCursorX; } } ////// Gets the x-coordinate of the /// mouse pointer (in client coordinates). /// ////// /// public int MouseCursorY { get { return mouseCursorY; } } ////// Gets the y-coordinate of the mouse pointer (in /// client coordinates). /// ////// /// public int SplitX { get { return splitX; } set { splitX = value; } } ////// Gets the x-coordinate of the /// upper-left corner of the ///(in client coordinates). /// /// /// public int SplitY { get { return splitY; } set { splitY = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// Gets the y-coordinate of the upper-left corner of the ///(in client coordinates). ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlDocumentType.cs
- XmlSchemaAttribute.cs
- TableCell.cs
- ReadOnlyHierarchicalDataSource.cs
- ComponentResourceKeyConverter.cs
- dataprotectionpermission.cs
- CalendarDay.cs
- CroppedBitmap.cs
- ConnectionsZoneDesigner.cs
- ConditionBrowserDialog.cs
- UInt32Storage.cs
- SqlGatherProducedAliases.cs
- MembershipPasswordException.cs
- SafeMILHandleMemoryPressure.cs
- SimpleType.cs
- ResourceContainer.cs
- SqlSelectStatement.cs
- DataColumn.cs
- CapiNative.cs
- GeometryHitTestResult.cs
- EncodingNLS.cs
- FusionWrap.cs
- SoapServerProtocol.cs
- LinqExpressionNormalizer.cs
- InvalidPrinterException.cs
- InputScopeAttribute.cs
- OdbcStatementHandle.cs
- ExceptionUtil.cs
- SafeUserTokenHandle.cs
- XmlNodeChangedEventManager.cs
- HttpDictionary.cs
- BuildDependencySet.cs
- AspCompat.cs
- ShapingWorkspace.cs
- XmlSchemaException.cs
- WindowsListBox.cs
- DisposableCollectionWrapper.cs
- ChannelFactory.cs
- WsdlInspector.cs
- ExtendedProperty.cs
- SystemColors.cs
- ServiceHostFactory.cs
- TreeSet.cs
- PermissionToken.cs
- JulianCalendar.cs
- GroupPartitionExpr.cs
- DataServiceQueryOfT.cs
- ExitEventArgs.cs
- DbFunctionCommandTree.cs
- ExpressionBuilder.cs
- HttpCachePolicy.cs
- GZipUtils.cs
- WriteFileContext.cs
- RuleInfoComparer.cs
- WindowsAuthenticationEventArgs.cs
- RemotingException.cs
- LogicalTreeHelper.cs
- Socket.cs
- DrawListViewColumnHeaderEventArgs.cs
- TypeToken.cs
- EntryWrittenEventArgs.cs
- X509CertificateStore.cs
- MethodResolver.cs
- Int16.cs
- FeatureAttribute.cs
- NullableLongAverageAggregationOperator.cs
- PeerToPeerException.cs
- x509store.cs
- TickBar.cs
- DesignerAttribute.cs
- LabelEditEvent.cs
- RelationshipConverter.cs
- HMACSHA256.cs
- OutputCacheProfile.cs
- SelectionService.cs
- FontSourceCollection.cs
- LineInfo.cs
- mediaclock.cs
- OletxResourceManager.cs
- Timer.cs
- ReadOnlyPropertyMetadata.cs
- WebConvert.cs
- ConfigurationSection.cs
- CollectionViewGroup.cs
- TreeBuilder.cs
- SqlMetaData.cs
- CalendarDay.cs
- MemberInitExpression.cs
- TiffBitmapEncoder.cs
- _AuthenticationState.cs
- LogoValidationException.cs
- FixedBufferAttribute.cs
- MailFileEditor.cs
- updateconfighost.cs
- XmlSchemaException.cs
- PersonalizableAttribute.cs
- DetailsViewPagerRow.cs
- MruCache.cs
- LinkLabelLinkClickedEvent.cs
- MenuStrip.cs