c# 부모창 바로옆에 새창 띄우기

자식창 _Load  이벤트 발생시
부모창의 X값+Width, Y 위치에 포지션 위치

private void Form2_Load(object sender, EventArgs e)
        {
            this.StartPosition = FormStartPosition.Manual;
            this.Location = new Point(frm1.Location.X + frm1.Size.Width, frm1.Location.Y);
        }

Posted by 나야

2012/02/22 12:20 2012/02/22 12:20
, ,
Response
No Trackback , No Comment
RSS :
http://myblog.oranc.co.kr/rss/response/322

« Previous : 1 : 2 : 3 : 4 : 5 : ... 61 : Next »