private void Button_Run_Click(object sender, EventArgs e)
{
Camera_translation();
}
private void Camera_translation()
{
Capture capture = new Capture();
Application.Idle += new EventHandler(delegate (object sender1, EventArgs e1)
{
this.camera_image.Image = capture.QueryFrame();
this.camera_image.Update();
});
}
private void Button_Stop_Click(object sender, EventArgs e)
{
//должен прекращаться показ с камеры
}
private void Button_Run_Click(object sender, EventArgs e)
{
CameraConnect();
}
EventHandler handler = null;
private void CameraConnect()
{
CameraDisconnect();
Capture capture = new Capture();
handler = new EventHandler(delegate (object sender1, EventArgs e1)
{
this.camera_image.Image = capture.QueryFrame();
this.camera_image.Update();
};
Application.Idle += handler;
}
private void Button_Stop_Click(object sender, EventArgs e)
{
CameraDisconnect();
}
private void CameraDisconnect()
{
if (handler != null)
{
Application.Idle -= handler;
handler = null;
}
}
Айфон мало держит заряд, разбираемся с проблемой вместе с AppLab
Перевод документов на английский язык: Важность и ключевые аспекты
Есть jsonПытаюсь через Newtonsoftjson привести его к классу