⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.cs

📁 windows CE 一些有用的源代码 比如camera
💻 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;

namespace SimpleCamera
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void CameraCapture_Click(object sender, EventArgs e)
        {
        }

        private void ChooseImage_Click(object sender, EventArgs e)
        {
        }

        [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 + -