Beispiel #1
0
        private void MtlGalmetgilGuide_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            GalmetgilForm search = new GalmetgilForm();

            search.Location = this.Location;
            search.ShowDialog();
            this.Close();
        }
Beispiel #2
0
        private void MtlGalmetgil_Click(object sender, EventArgs e)
        {
            this.Visible = false;

            GalmetgilForm form = new GalmetgilForm();

            form.Location = this.Location;
            form.ShowDialog();

            this.Close();
        }
Beispiel #3
0
        private void metroTile1_Click(object sender, EventArgs e)
        {
            this.Visible = false;

            //서치폼 오픈 , 화면전환
            GalmetgilForm search = new GalmetgilForm(); //오픈시 필요

            search.Location = this.Location;            //나의 위치를 서치화면에 보내줌
            search.ShowDialog();                        //오픈시 필요

            //main폼 닫기
            this.Close();
        }