Code:
/ DotNET / DotNET / 8.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
- GetLedgerRequest.cs
- MimeTypeAttribute.cs
- Token.cs
- arc.cs
- TabControlEvent.cs
- OdbcCommandBuilder.cs
- ListViewPagedDataSource.cs
- EventItfInfo.cs
- XmlMembersMapping.cs
- FeatureSupport.cs
- SqlNodeAnnotation.cs
- LicFileLicenseProvider.cs
- AssemblyAssociatedContentFileAttribute.cs
- ComponentEditorPage.cs
- XPathNode.cs
- SQLDateTimeStorage.cs
- ResourceDictionary.cs
- DesignConnection.cs
- Transform.cs
- TypeConverter.cs
- ContextMenu.cs
- RtType.cs
- MobileControlPersister.cs
- mediaeventshelper.cs
- CustomErrorsSection.cs
- ReservationNotFoundException.cs
- ObjectAnimationUsingKeyFrames.cs
- SchemaLookupTable.cs
- MDIClient.cs
- CurrentTimeZone.cs
- TemporaryBitmapFile.cs
- assemblycache.cs
- DrawListViewColumnHeaderEventArgs.cs
- MetafileHeader.cs
- WebPartsSection.cs
- ItemList.cs
- BrowserCapabilitiesFactory.cs
- RequestCachingSection.cs
- Int64.cs
- EntityDataSourceWizardForm.cs
- TdsRecordBufferSetter.cs
- VSDExceptions.cs
- TCPClient.cs
- EventRecordWrittenEventArgs.cs
- DependentList.cs
- MailWebEventProvider.cs
- AutoGeneratedField.cs
- Image.cs
- AspNetCacheProfileAttribute.cs
- SqlBulkCopy.cs
- XamlGridLengthSerializer.cs
- UIPropertyMetadata.cs
- AddressingProperty.cs
- Interfaces.cs
- MultipartIdentifier.cs
- GraphicsPath.cs
- DataGridViewImageColumn.cs
- MatrixTransform3D.cs
- ReliableChannelFactory.cs
- OdbcParameterCollection.cs
- FontFamilyConverter.cs
- _AcceptOverlappedAsyncResult.cs
- DataColumnCollection.cs
- ImageMap.cs
- LinkUtilities.cs
- WasHostedComPlusFactory.cs
- DescendantOverDescendantQuery.cs
- ClientEndpointLoader.cs
- RTTypeWrapper.cs
- PlacementWorkspace.cs
- StyleCollectionEditor.cs
- TraceUtils.cs
- ParameterToken.cs
- OleDbError.cs
- SaveFileDialog.cs
- UriPrefixTable.cs
- ScriptingProfileServiceSection.cs
- GetChildSubtree.cs
- ProfilePropertySettings.cs
- HandleCollector.cs
- TypeProvider.cs
- OdbcEnvironmentHandle.cs
- SafeLocalMemHandle.cs
- DescendantOverDescendantQuery.cs
- OutputCacheModule.cs
- EditorPartChrome.cs
- TaskSchedulerException.cs
- OutOfProcStateClientManager.cs
- EventLogTraceListener.cs
- Control.cs
- ObjectStateManagerMetadata.cs
- AssertSection.cs
- DBBindings.cs
- AsymmetricSignatureFormatter.cs
- Int64AnimationUsingKeyFrames.cs
- NumericUpDownAccelerationCollection.cs
- SqlParameterizer.cs
- RangeBase.cs
- WarningException.cs
- DynamicUpdateCommand.cs