예제 #1
0
파일: Form1.cs 프로젝트: eriher/podMan
        private void playingPic_Click(object sender, EventArgs e)
        {
            tabControl1.SelectedIndex = 0;
            PodInfo uc = new PodInfo(PodMan.Instance.getPlaying().podcast_id);

            tabPage1.Controls.Add(uc);
            uc.BringToFront();
        }
예제 #2
0
파일: Podlist.cs 프로젝트: eriher/podMan
        private void Pic_MouseClick(object sender, MouseEventArgs e)
        {
            PodInfo uc = new PodInfo(((sender as PictureBox).Tag as Podcast).podcast_id);

            //panel1.Controls.Clear();
            //panel1.Controls.Add(uc);
            this.Parent.Controls.Add(uc);
            uc.BringToFront();
        }