29 lines
587 B
C#
29 lines
587 B
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
|
|
namespace TBF.UiBridge
|
|
{
|
|
public enum CameraUICmd
|
|
{
|
|
None,
|
|
Grab,
|
|
Live,
|
|
Stop,
|
|
SaveImage,
|
|
}
|
|
|
|
public class CameraUICmdEventArgs : EventArgs
|
|
{
|
|
public CameraUICmd CameraUICmd;
|
|
public int CameraIdx; /// 0-based camera index/identifier. -1 = all cameras
|
|
|
|
public CameraUICmdEventArgs(CameraUICmd cameraUICmd, int cameraIdx)
|
|
{
|
|
CameraUICmd = cameraUICmd;
|
|
CameraIdx = cameraIdx;
|
|
}
|
|
}
|
|
}
|