2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
2017-01-14 15:11:11 +00:00
|
|
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
using System;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
using System.Windows.Forms;
|
2016-03-16 08:43:05 +00:00
|
|
|
|
using TBF.Resources;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.UiControls
|
|
|
|
|
|
{
|
|
|
|
|
|
public partial class CameraPictureCtrl : UserControl
|
|
|
|
|
|
{
|
|
|
|
|
|
public PictureBox PictureBox { get { return pictureBox; } }
|
|
|
|
|
|
|
|
|
|
|
|
public CameraPictureCtrl()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
2016-03-16 08:43:05 +00:00
|
|
|
|
|
|
|
|
|
|
groupBox.Text = Strings.Camera;
|
|
|
|
|
|
grabButton.Text = Strings.Grab;
|
|
|
|
|
|
liveButton.Text = Strings.Live;
|
|
|
|
|
|
focusButton.Text = Strings.Focus;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void grabButton_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void liveButton_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void focusButton_Click(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void trackBar_Scroll(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|