1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- namespace Vinno.vCloud.FIS.Windows
- {
- public class CaptureDataEventArgs : EventArgs
- {
- /// <summary>
- /// Gets the window's handle which changed.
- /// </summary>
- public IntPtr WindowHandle { get; }
- /// <summary>
- /// Gets the image's width.
- /// </summary>
- public int Width { get; }
- /// <summary>
- /// Gets the image's height.
- /// </summary>
- public int Height { get; }
- /// <summary>
- /// Gets the image's data, should be SRGB format.
- /// </summary>
- public IntPtr Data { get; }
- public CaptureDataEventArgs(IntPtr windowHandle, int width, int height, IntPtr data)
- {
- WindowHandle = windowHandle;
- Width = width;
- Height = height;
- Data = data;
- }
- }
- }
|