예제 #1
0
파일: List.cs 프로젝트: ATOM-Games/Fon
 public void Remove(ForList t)
 {
     this.VerticalScroll.Value = 0;
     this.Compot.Remove(t);
     this.BackGround.Controls.Remove(t);
     Correct();
 }
예제 #2
0
파일: List.cs 프로젝트: ATOM-Games/Fon
        public void AddGroup(Groups g)
        {
            this.VerticalScroll.Value = 0;
            ForList for_local = new ForList(g);

            this.Compot.Add(for_local);
            this.BackGround.Controls.Add(for_local);
            Correct();
        }