using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace WindowsFormsApp2 { public partial class FullScreen : Form { public FullScreen() { InitializeComponent(); WindowState = System.Windows.Forms.FormWindowState.Maximized; } public void bindCam(int d) { singleCam1.setCamId(d); } } }