Canon.Eos.CameraCockpit.Forms.CockpitForm.UpdatePicture(System.Drawing.Image)

Here are the examples of the csharp api class Canon.Eos.CameraCockpit.Forms.CockpitForm.UpdatePicture(System.Drawing.Image) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: Canon.Eos.Framework
Source File: CockpitForm.cs
private void HandlePictureUpdate(object sender, EosImageEventArgs e)
        {
            this.UpdatePicture(e.GetImage());
        }

2. Example

Project: Canon.Eos.Framework
Source File: CockpitForm.cs
private void UpdatePicture(Image image)
        {
            if (this.InvokeRequired)
                this.Invoke(new Action(() => this.UpdatePicture(image)));
            else
                _pictureBox.Image = image;
        }