This commit is contained in:
jeongyoonjeong
2021-08-02 17:11:27 +09:00
parent 2311774c42
commit 4486a127b7
12 changed files with 605 additions and 906 deletions

View File

@@ -905,15 +905,15 @@ namespace FEQ0000
private void button5_Click(object sender, EventArgs e)
{
FCOMMON.fWebCamera f = new FCOMMON.fWebCamera(FCOMMON.info.camIndex);
if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
var bmp = f.bmp.Clone();
Application.DoEvents();
var oimag = this.pictureBox1.Image;
this.pictureBox1.Image = (Image)bmp;
if (oimag != null) oimag.Dispose();
}
//FCOMMON.fWebCamera f = new FCOMMON.fWebCamera(FCOMMON.info.camIndex);
//if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
//{
// var bmp = f.bmp.Clone();
// Application.DoEvents();
// var oimag = this.pictureBox1.Image;
// this.pictureBox1.Image = (Image)bmp;
// if (oimag != null) oimag.Dispose();
//}
}
private void button6_Click(object sender, EventArgs e)