📄 form1.cs
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Threading;
using System.IO;
using Microsoft.WindowsMobile.Forms;
namespace SimpleCamera
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void CameraCapture_Click(object sender, EventArgs e)
{
CameraCaptureDialog ccd = new CameraCaptureDialog();
ccd.ShowDialog();
this.pictureBox1.Image = new Bitmap(ccd.FileName);
}
private void ChooseImage_Click(object sender, EventArgs e)
{
SelectPictureDialog spd = new SelectPictureDialog();
spd.ShowDialog();
pictureBox1.Image = new Bitmap(spd.FileName);
}
[DllImport("CameraCaptureDll.dll")]
private extern static int InitializeGraph(IntPtr hWnd);
[DllImport("CameraCaptureDll.dll")]
private extern static int CaptureStill(string LocationToStore);
private static bool once = false;
private void button1_Click(object sender, EventArgs e)
{
if (!once)
{
once = true;
InitializeGraph(this.Handle);
}
File.Delete(@"\MyPicture.JPG");
CaptureStill(@"\MyPicture.JPG");
Thread.Sleep(500);
this.pictureBox1.Image = new Bitmap(@"\MyPicture.JPG");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -