Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / SplitterEvent.cs / 1305376 / SplitterEvent.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 SplitterEventArgs : EventArgs { private readonly int x; private readonly int y; private int splitX; private int splitY; ////// Provides data for splitter events. /// ////// /// public SplitterEventArgs(int x, int y, int splitX, int splitY) { this.x = x; this.y = y; 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 X { get { return x; } } ////// Gets the x-coordinate of the /// mouse pointer (in client coordinates). /// ////// /// public int Y { get { return y; } } ////// 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./// 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
- Canvas.cs
- AppDomainShutdownMonitor.cs
- NameValueSectionHandler.cs
- WebPartTracker.cs
- PropertyInformationCollection.cs
- FixedDocumentPaginator.cs
- InstanceLockLostException.cs
- ListBoxItemAutomationPeer.cs
- TiffBitmapDecoder.cs
- IPHostEntry.cs
- PageThemeBuildProvider.cs
- JsonReaderWriterFactory.cs
- SqlClientMetaDataCollectionNames.cs
- InputBinding.cs
- ExtensibleClassFactory.cs
- _Connection.cs
- SoundPlayer.cs
- FontWeights.cs
- NameScope.cs
- XPathNavigatorKeyComparer.cs
- UnsafeNativeMethods.cs
- indexingfiltermarshaler.cs
- TransformerInfoCollection.cs
- LocalValueEnumerator.cs
- EventMap.cs
- Int32CollectionConverter.cs
- ProviderCommandInfoUtils.cs
- ECDiffieHellman.cs
- CalendarDateChangedEventArgs.cs
- DockPanel.cs
- TextControl.cs
- TableLayoutPanel.cs
- NamedPipeActivation.cs
- MSAANativeProvider.cs
- FixedSOMGroup.cs
- XmlUtf8RawTextWriter.cs
- ModelUIElement3D.cs
- ListBoxItemAutomationPeer.cs
- VectorValueSerializer.cs
- ListBoxItemWrapperAutomationPeer.cs
- OleDbCommandBuilder.cs
- DataQuery.cs
- FreezableCollection.cs
- Char.cs
- CommaDelimitedStringAttributeCollectionConverter.cs
- Permission.cs
- Bits.cs
- XmlQualifiedName.cs
- AsyncDataRequest.cs
- Number.cs
- ValueHandle.cs
- UntypedNullExpression.cs
- OracleInternalConnection.cs
- Polygon.cs
- _CookieModule.cs
- MenuItem.cs
- HttpResponseHeader.cs
- ColorContext.cs
- RoleManagerModule.cs
- TextDataBindingHandler.cs
- ObfuscateAssemblyAttribute.cs
- DataTableClearEvent.cs
- WebResourceAttribute.cs
- BezierSegment.cs
- SelectorItemAutomationPeer.cs
- adornercollection.cs
- DataGridRelationshipRow.cs
- CodeAttachEventStatement.cs
- LostFocusEventManager.cs
- EventLogSession.cs
- RenderContext.cs
- Paragraph.cs
- XmlValidatingReader.cs
- WebPartActionVerb.cs
- RawStylusInput.cs
- mansign.cs
- VerificationAttribute.cs
- EqualityComparer.cs
- DataViewListener.cs
- CipherData.cs
- Line.cs
- MetaModel.cs
- FontWeights.cs
- SafeSecurityHelper.cs
- PageCodeDomTreeGenerator.cs
- SynchronizedInputPattern.cs
- MsmqInputChannelListener.cs
- MasterPageParser.cs
- Line.cs
- Border.cs
- baseaxisquery.cs
- StorageEntityContainerMapping.cs
- basevalidator.cs
- ProcessHostServerConfig.cs
- WebPartHelpVerb.cs
- SingleBodyParameterMessageFormatter.cs
- SqlOuterApplyReducer.cs
- Pair.cs
- ReliableSessionBindingElement.cs
- Substitution.cs