Exemple #1
0
        public ActionWindow() : base()
        {
            Pane = new Pane("액션");

            ContentPane contentPane = new ContentPane();

            contentPane.AddPane(Pane);

            base.MainContent = contentPane;

            base.Width  = 800;
            base.Height = 600;
        }
Exemple #2
0
        public UIWindow() : base()
        {
            Pane uiPane = new Pane("UI 디자이너");

            uiPane.MainContent = UIManager.Instance.FlowerUIDesigner;
            UIManager.Instance.FlowerUIDesigner.DockedWindow = this;

            ContentPane contentPane = new ContentPane();

            contentPane.AddPane(uiPane);

            base.MainContent = contentPane;
        }
        public ProjectExplorerWindow() : base()
        {
            Pane projectExplorerPane = new Pane("프로젝트 탐색기");

            ProjectExplorer = new ProjectExplorer();
            projectExplorerPane.MainContent = ProjectExplorer;

            ContentPane contentPane = new ContentPane();

            contentPane.AddPane(projectExplorerPane);

            base.MainContent = contentPane;

            ProjectManager.Instance.ProjectExplorerWindow = this;
        }
        public FlowchartWindow(FlowchartDesigner flowchartDesigner) : base()
        {
            FlowDesigner = flowchartDesigner;

            Pane flowchartPane = new Pane(FlowDesigner.FlowValue);

            flowchartPane.MainContent = flowchartDesigner;
            //FlowManager.Instance.FlowchartDesigner.DockedWindow = this;

            ContentPane contentPane = new ContentPane();

            contentPane.AddPane(flowchartPane);

            base.MainContent = contentPane;
        }
Exemple #5
0
        public ToolBoxWindow() : base()
        {
            Pane toolBoxPane = new Pane("도구상자");

            toolBoxPane.MainContent = UIManager.Instance.FlowerToolBox;
            UIManager.Instance.FlowerToolBox.DockedWindow = this;

            ContentPane contentPane = new ContentPane();

            contentPane.AddPane(toolBoxPane);

            base.MainContent = contentPane;

            base.Width  = 800;
            base.Height = 600;
        }
Exemple #6
0
        public FWPropertyWindow() : base()
        {
            Pane propertyPane = new Pane("속성");

            propertyPane.MainContent = UIManager.Instance.FlowerProperty;
            UIManager.Instance.FlowerProperty.DockedWindow = this;

            ContentPane contentPane = new ContentPane();

            contentPane.AddPane(propertyPane);

            base.MainContent = contentPane;

            base.Width  = 800;
            base.Height = 600;
        }
        public FlowToolWindow() : base()
        {
            Pane flowToolPane = new Pane("순서도 도구");

            flowToolPane.MainContent = FlowManager.Instance.FlowTool;
            FlowManager.Instance.FlowTool.DockedWindow = this;

            ContentPane contentPane = new ContentPane();

            contentPane.AddPane(flowToolPane);

            base.MainContent = contentPane;

            base.Width  = 800;
            base.Height = 600;
        }
        public ActionToolWindow() : base()
        {
            Pane actionPane = new Pane("액션 도구");

            actionPane.MainContent = FlowManager.Instance.ActionTool;
            FlowManager.Instance.ActionTool.DockedWindow = this;

            ContentPane contentPane = new ContentPane();

            contentPane.AddPane(actionPane);

            base.MainContent = contentPane;

            base.Width  = 800;
            base.Height = 600;
        }
        public FWEventWindow() : base()
        {
            Pane eventPane = new Pane("이벤트");

            eventPane.MainContent = UIManager.Instance.FlowerEvent;
            UIManager.Instance.FlowerEvent.DockedWindow = this;

            ContentPane contentPane = new ContentPane();

            contentPane.AddPane(eventPane);

            base.MainContent = contentPane;

            base.Width  = 800;
            base.Height = 600;
        }