Inheritance: System.Windows.Forms.Form
Esempio n. 1
0
        private void btnPopout_Click(object sender, EventArgs e)
        {
            frmPopOut popoutform = new frmPopOut(this, icc);

            popoutform.Show();
            popoutform.Width  = icc.CurrentVideoWidth;
            popoutform.Height = icc.CurrentVideoHeight;

            icc.Parent = popoutform.pnlViewer;
            icc.Dock   = DockStyle.Fill;
        }
Esempio n. 2
0
        private void btnPopout_Click(object sender, EventArgs e)
        {
            frmPopOut popoutform = new frmPopOut(this, icc);
            popoutform.Show();
            popoutform.Width = icc.CurrentVideoWidth;
            popoutform.Height = icc.CurrentVideoHeight;

            icc.Parent = popoutform.pnlViewer;
            icc.Dock = DockStyle.Fill;
        }