コード例 #1
0
        public TLEPCEManagementBeatTests()
        {
            editor = new TimeLineEditor();
            var timeLine = MockObjects.GetTimeLine2();

            editor.AttachTimeLineToEditor(timeLine);
            Management = new TLEPCEManagementBeat(editor);
        }
コード例 #2
0
        TimeLineEditor TLE;// = new TimeLineEditor();

        public TimeLineEditorTests()
        {
            TLE = new TimeLineEditor();

            TimeLine tl = GetTimeLine();

            TLE.AttachTimeLineToEditor(tl);
        }
コード例 #3
0
        public TLEPCEManagementAnimationElementTests()
        {
            editor = new TimeLineEditor();
            var timeLine = MockObjects.GetTimeLine2();

            editor.AttachTimeLineToEditor(timeLine);
            //editor.PanelHub.InitializeDefaultPanels(timeLine);
            Management = new TLEPCEManagementAnimationElement(editor);
        }
コード例 #4
0
        public TLEPCEManagementAnimationRouteTests()
        {
            editor = new TimeLineEditor();
            var timeLine = MockObjects.GetTimeLine2();

            editor.AttachTimeLineToEditor(timeLine);
            Management = new TLEPCEManagementAnimationRoute(editor);

            var animationElementPanel = Management.ParentTLE.PanelHub.GetPanel(TLEPanelNames.ANIMATION_ELEMENT_PREFIX + "0");
            var animationElementCell  = animationElementPanel.PanelCells.FirstOrDefault();

            Management.ParentTLE.PanelHub.SelectPanelCell(animationElementCell);
        }
コード例 #5
0
 public TLEPCEManagementAnimationElement(TimeLineEditor parent)
 {
     ParentTLE = parent;
 }
コード例 #6
0
 public TLEPCEManagementBeat(TimeLineEditor parent)
 {
     ParentTLE = parent;
 }