Example #1
0
        public WorkSpaceForm(AnimationWindow animationWindow)
        {
            InitializeComponent();

            this.animationWindow = animationWindow;

            this.animationWindow.SetRenderer(new RenderInitialize());
        }
Example #2
0
        /*******************/
        /*** Constructor ***/
        /*******************/

        public WorkSpaceManager(
            FormsWindow formsWindow,
            AnimationWindow animationWindow
            )
        {
            this.formsWindow     = formsWindow;
            this.animationWindow = animationWindow;

            //CreateTab("Sprite Controls", new WorkSpaceForm(animationWindow));

            PostManager.Instance.Register(this);
        }