Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Input / RawAppCommandInputReport.cs / 1 / RawAppCommandInputReport.cs
using System; using System.Security; using System.Security.Permissions; using MS.Internal; using MS.Win32; using System.Windows; namespace System.Windows.Input { ////// The RawAppCommandInputReport class encapsulates the raw input provided from WM_APPCOMMAND message. /// This WM_APPCOMMAND message gets generated when the DefWindowProc processes the WM_XBUTTONUP or /// WM_NCXBUTTONUP message, or when the user types an application command key. /// /// ////// It is important to note that the InputReport class only contains /// blittable types. This is required so that the report can be marshalled across application domains. /// /// To get the coordinates of the cursor if the message was generated /// by a button click on the mouse, the application can call GetMessagePos. /// An application can test whether the message was generated by the mouse by checking whether Device contains FAPPCOMMAND_MOUSE. /// Unlike other windows messages, an application should return TRUE from this message if it processes it. /// internal class RawAppCommandInputReport : InputReport { ////// Constructs ad instance of the RawAppCommandInputReport class. /// /// /// The input source that provided this input. /// /// /// The mode in which the input is being provided. /// /// /// The time when the input occured. /// /// /// The Application Command associated. /// /// /// The device that generated the app command. /// /// the input device that generated the input event internal RawAppCommandInputReport( PresentationSource inputSource, InputMode mode, int timestamp, int appCommand, InputType device, InputType inputType) : base(inputSource, inputType, mode, timestamp) { _appCommand = appCommand; _device = device; } ////// Read-only access to the AppCommand that was reported. /// internal int AppCommand { get { return _appCommand; } } ////// Read-only access to the device that generated the AppCommand /// internal InputType Device { get { return _device; } } private int _appCommand; private InputType _device; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Security; using System.Security.Permissions; using MS.Internal; using MS.Win32; using System.Windows; namespace System.Windows.Input { ////// The RawAppCommandInputReport class encapsulates the raw input provided from WM_APPCOMMAND message. /// This WM_APPCOMMAND message gets generated when the DefWindowProc processes the WM_XBUTTONUP or /// WM_NCXBUTTONUP message, or when the user types an application command key. /// /// ////// It is important to note that the InputReport class only contains /// blittable types. This is required so that the report can be marshalled across application domains. /// /// To get the coordinates of the cursor if the message was generated /// by a button click on the mouse, the application can call GetMessagePos. /// An application can test whether the message was generated by the mouse by checking whether Device contains FAPPCOMMAND_MOUSE. /// Unlike other windows messages, an application should return TRUE from this message if it processes it. /// internal class RawAppCommandInputReport : InputReport { ////// Constructs ad instance of the RawAppCommandInputReport class. /// /// /// The input source that provided this input. /// /// /// The mode in which the input is being provided. /// /// /// The time when the input occured. /// /// /// The Application Command associated. /// /// /// The device that generated the app command. /// /// the input device that generated the input event internal RawAppCommandInputReport( PresentationSource inputSource, InputMode mode, int timestamp, int appCommand, InputType device, InputType inputType) : base(inputSource, inputType, mode, timestamp) { _appCommand = appCommand; _device = device; } ////// Read-only access to the AppCommand that was reported. /// internal int AppCommand { get { return _appCommand; } } ////// Read-only access to the device that generated the AppCommand /// internal InputType Device { get { return _device; } } private int _appCommand; private InputType _device; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListViewUpdateEventArgs.cs
- UnsafeNativeMethods.cs
- DbProviderFactoriesConfigurationHandler.cs
- EntityKeyElement.cs
- ByteAnimationUsingKeyFrames.cs
- CodeBlockBuilder.cs
- PerfCounterSection.cs
- RunInstallerAttribute.cs
- Stroke2.cs
- OracleCommandSet.cs
- DependencyObjectProvider.cs
- SoapFault.cs
- DataGridViewColumnStateChangedEventArgs.cs
- TypeLoadException.cs
- ManipulationDelta.cs
- ToolStripControlHost.cs
- WmlTextViewAdapter.cs
- UniqueIdentifierService.cs
- AsyncInvokeContext.cs
- TypeDelegator.cs
- XPathAxisIterator.cs
- EFColumnProvider.cs
- IisHelper.cs
- ObjectStorage.cs
- HttpCookie.cs
- ComAdminInterfaces.cs
- BaseProcessor.cs
- FileUtil.cs
- IPHostEntry.cs
- AxHost.cs
- NodeFunctions.cs
- ToolStripLocationCancelEventArgs.cs
- SHA1Managed.cs
- StylusPointProperties.cs
- PostBackOptions.cs
- Mutex.cs
- DBPropSet.cs
- CodeObject.cs
- AddInContractAttribute.cs
- RetrieveVirtualItemEventArgs.cs
- CreateSequenceResponse.cs
- TextElementEnumerator.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- ThumbAutomationPeer.cs
- DependentList.cs
- SourceFileBuildProvider.cs
- SoapInteropTypes.cs
- DesignerDataParameter.cs
- ScriptControl.cs
- XmlCharacterData.cs
- XPathNodeList.cs
- SharedStatics.cs
- DrawingVisual.cs
- NavigationFailedEventArgs.cs
- XpsFilter.cs
- SamlSubject.cs
- DefaultValueConverter.cs
- UrlPath.cs
- DecoderNLS.cs
- AuthenticationService.cs
- XmlCharCheckingReader.cs
- WebPartDisplayModeCancelEventArgs.cs
- DataContext.cs
- CLSCompliantAttribute.cs
- String.cs
- Fonts.cs
- AnnotationService.cs
- StringUtil.cs
- SqlRecordBuffer.cs
- CharacterMetricsDictionary.cs
- SecurityAppliedMessage.cs
- TimeManager.cs
- File.cs
- Vector3DCollection.cs
- FormViewPageEventArgs.cs
- EntityDataSource.cs
- UserControlParser.cs
- _SecureChannel.cs
- ProfilePropertyNameValidator.cs
- MenuRendererStandards.cs
- RowToFieldTransformer.cs
- RefreshEventArgs.cs
- BaseTemplateBuildProvider.cs
- PlatformNotSupportedException.cs
- _BaseOverlappedAsyncResult.cs
- CodeStatementCollection.cs
- ByteAnimationBase.cs
- HttpListenerResponse.cs
- RecognizedAudio.cs
- HttpContext.cs
- TrustDriver.cs
- oledbmetadatacollectionnames.cs
- FragmentQueryKB.cs
- ObjectListItem.cs
- DataGridViewComboBoxCell.cs
- MsmqTransportReceiveParameters.cs
- ComplexTypeEmitter.cs
- TraceContextRecord.cs
- RightsManagementInformation.cs
- ContentValidator.cs