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
- TimeManager.cs
- RuntimeEnvironment.cs
- WebBrowserProgressChangedEventHandler.cs
- CodeAssignStatement.cs
- BitConverter.cs
- DocumentStatusResources.cs
- AtlasWeb.Designer.cs
- ConfigUtil.cs
- FocusTracker.cs
- IPHostEntry.cs
- WindowInteropHelper.cs
- TransformedBitmap.cs
- WebPartChrome.cs
- WindowsHyperlink.cs
- XamlPathDataSerializer.cs
- OracleConnectionStringBuilder.cs
- PathSegmentCollection.cs
- RemoveFromCollection.cs
- MappingSource.cs
- Transform.cs
- MenuItemAutomationPeer.cs
- GeneralTransform3DTo2DTo3D.cs
- ImageAttributes.cs
- SqlDataSourceWizardForm.cs
- WebHttpEndpoint.cs
- ListArgumentProvider.cs
- SqlTriggerAttribute.cs
- ColumnMapVisitor.cs
- DataGridViewTextBoxEditingControl.cs
- HasActivatableWorkflowEvent.cs
- BasicKeyConstraint.cs
- DSGeneratorProblem.cs
- WebPartVerbsEventArgs.cs
- ListItemConverter.cs
- Barrier.cs
- ObjectDataSourceEventArgs.cs
- ControlHelper.cs
- RenderCapability.cs
- PointLight.cs
- propertytag.cs
- FileStream.cs
- HostExecutionContextManager.cs
- TextTreeNode.cs
- MatrixTransform.cs
- SqlDataSourceStatusEventArgs.cs
- coordinator.cs
- AspProxy.cs
- ObjectQuery.cs
- FunctionQuery.cs
- EntityContainer.cs
- AccessDataSourceDesigner.cs
- MessageAction.cs
- ProcessHostServerConfig.cs
- ListViewInsertionMark.cs
- WindowsProgressbar.cs
- SqlGatherConsumedAliases.cs
- QuotedStringFormatReader.cs
- WindowsListViewScroll.cs
- HtmlTextArea.cs
- QilParameter.cs
- BulletedListDesigner.cs
- SystemIdentity.cs
- SettingsSection.cs
- DataKeyArray.cs
- ExclusiveHandleList.cs
- AsynchronousChannel.cs
- Mouse.cs
- InvokerUtil.cs
- IndexedSelectQueryOperator.cs
- SynchronizationContext.cs
- LinkGrep.cs
- PersistChildrenAttribute.cs
- XmlReader.cs
- PixelFormatConverter.cs
- AsymmetricKeyExchangeFormatter.cs
- MouseOverProperty.cs
- EntityCommandCompilationException.cs
- ContentType.cs
- CollectionExtensions.cs
- ProtocolViolationException.cs
- ColorInterpolationModeValidation.cs
- NullableConverter.cs
- ZoomPercentageConverter.cs
- ItemCheckEvent.cs
- CredentialCache.cs
- MatchingStyle.cs
- CheckBoxRenderer.cs
- QueryProcessor.cs
- Privilege.cs
- ActivitySurrogate.cs
- HttpCookie.cs
- SchemaCollectionPreprocessor.cs
- BufferedWebEventProvider.cs
- PersonalizationStateQuery.cs
- Receive.cs
- ListItemCollection.cs
- InputProviderSite.cs
- BoundingRectTracker.cs
- DataGridViewButtonCell.cs
- PropertySourceInfo.cs