반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
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 WindowsFormsApp5 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { foreach (Form frm in Application.OpenForms) { if(frm.Name == "PopUp") { frm.Activate(); return; } } PopUp sfrm = new PopUp(); sfrm.Show(); } } } |
'프로그래밍 > C#' 카테고리의 다른 글
[C#]SendKeys.Send (0) | 2017.05.16 |
---|---|
[C#]픽셀의 RGB정보 가져오기 (0) | 2017.05.05 |
[C#]드래그앤드롭 (0) | 2017.05.01 |
[C#]PictureBox안에 있는 이미지 드래그로 이동시키기 (7) | 2017.04.28 |
[C#] 화면스크린 갭쳐 (0) | 2017.04.25 |