ARCed.Database.Animations.AnimationMainForm.AnimationMainForm_Load C# (CSharp) 메소드

AnimationMainForm_Load() 개인적인 메소드

private AnimationMainForm_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
리턴 void
        private void AnimationMainForm_Load(object sender, EventArgs e)
        {
            /* TEST ////////////////////////////////////////////

            Project.Data.Animations = new List<dynamic> { null };
            for (int i = 1; i <= 20; i++)
                Project.Data.Animations.Add(new Animation { id = i });

            // TEST ///////////////////////////////////////////*/
            RefreshObjectList();
            this.dataObjectList.SelectedIndex = 0;
            this.listBoxFrames.SelectedIndex = 0;
        }