Exemplo n.º 1
0
        private void button1_Click_1(object sender, EventArgs e)
        {
            this.Visible = false;

            Thread.Sleep(TimeSpan.FromSeconds(int.Parse(textBox1.Text)));

            if (!checkBox1.Checked || !File.Exists(filename))
            {
                ServerDLL.ScreenCapture.CaptureScreenToFile(filename, ImageFormat.Jpeg);
            }
            var attachedWindow = new AttachedWindow((cmbProcess.SelectedItem as ComboboxItem).Value.ToString());

            attachedWindow.ShowAttachWindow();
            TransparentFrm frm = new TransparentFrm(attachedWindow);

            frm.Show();
        }
Exemplo n.º 2
0
 private void closeBtn_Click(object sender, EventArgs e)
 {
     TransparentFrm.MinimizeAll();
     Application.Exit();
 }