Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / SplitterEvent.cs / 1 / 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. // 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
- PropertyValueUIItem.cs
- LeafCellTreeNode.cs
- DrawingGroupDrawingContext.cs
- DirectoryGroupQuery.cs
- mansign.cs
- BorderGapMaskConverter.cs
- MemoryRecordBuffer.cs
- View.cs
- DeferredTextReference.cs
- TrackingAnnotationCollection.cs
- Base64Encoder.cs
- mactripleDES.cs
- ImageField.cs
- InternalPermissions.cs
- ConfigurationPropertyAttribute.cs
- WriteableOnDemandStream.cs
- ArraySubsetEnumerator.cs
- ChannelManagerBase.cs
- IPHostEntry.cs
- XmlSchemaSimpleTypeRestriction.cs
- AtomServiceDocumentSerializer.cs
- WmlImageAdapter.cs
- TransportContext.cs
- KeyedCollection.cs
- NameTable.cs
- WindowHelperService.cs
- KeyEvent.cs
- Simplifier.cs
- Attributes.cs
- Size3DConverter.cs
- DataExpression.cs
- MsmqInputChannelBase.cs
- Canvas.cs
- SqlXml.cs
- AppSettingsReader.cs
- CheckBoxField.cs
- ISFClipboardData.cs
- DockingAttribute.cs
- TreeView.cs
- DropSource.cs
- CommandField.cs
- CodeTypeDeclaration.cs
- LogExtentCollection.cs
- iisPickupDirectory.cs
- JavaScriptSerializer.cs
- AccessorTable.cs
- DataGridViewElement.cs
- WorkflowMarkupSerializationManager.cs
- ResolvedKeyFrameEntry.cs
- DNS.cs
- VideoDrawing.cs
- HuffmanTree.cs
- metadatamappinghashervisitor.cs
- SimpleLine.cs
- RowsCopiedEventArgs.cs
- ISFTagAndGuidCache.cs
- SendMailErrorEventArgs.cs
- ProfileProvider.cs
- QilInvoke.cs
- _AutoWebProxyScriptHelper.cs
- MetadataArtifactLoaderFile.cs
- ThreadExceptionEvent.cs
- Memoizer.cs
- ListManagerBindingsCollection.cs
- SoundPlayer.cs
- HttpFormatExtensions.cs
- EntitySqlException.cs
- sitestring.cs
- XmlSchemaDocumentation.cs
- HyperLinkField.cs
- XPathNodePointer.cs
- XNodeSchemaApplier.cs
- RootNamespaceAttribute.cs
- HiddenFieldPageStatePersister.cs
- TypeSystem.cs
- OdbcConnectionStringbuilder.cs
- MetadataItemSerializer.cs
- TableHeaderCell.cs
- NoneExcludedImageIndexConverter.cs
- PreviewPageInfo.cs
- XmlNode.cs
- TimeSpanConverter.cs
- ScrollBarRenderer.cs
- BaseCodeDomTreeGenerator.cs
- CreateUserErrorEventArgs.cs
- SiteMapPath.cs
- COSERVERINFO.cs
- ClaimTypes.cs
- prompt.cs
- UIElementParagraph.cs
- Win32KeyboardDevice.cs
- SoapInteropTypes.cs
- ChineseLunisolarCalendar.cs
- TemplatedMailWebEventProvider.cs
- ArraySortHelper.cs
- Calendar.cs
- AccessibleObject.cs
- CellParaClient.cs
- UserPersonalizationStateInfo.cs
- TerminatingOperationBehavior.cs