/// /// Copyright (c) 2017 Sensus Metering Systems /// using System; using System.Drawing; using System.Windows.Forms; using TBF.Resources; namespace TBF.UiControls { public partial class CameraPictureCtrl : UserControl { public PictureBox PictureBox { get { return pictureBox; } } public CameraPictureCtrl() { InitializeComponent(); groupBox.Text = Strings.Camera; grabButton.Text = Strings.Grab; liveButton.Text = Strings.Live; focusButton.Text = Strings.Focus; } 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) { } } }