Exemple #1
0
        public ExecuteInfo(Stream stream, int[] breakPoints, FlowDrawTab flowDrawTab, Source[] sources)
        {
            Stream      = stream;
            BreakPoints = breakPoints;
            FlowDrawTab = flowDrawTab;
            Sources     = sources;

            foreach (var source in sources)
            {
                source.PropertyChanged += source_PropertyChanged;
            }
        }
Exemple #2
0
        private void AddEmptyFlowDrawPanel()
        {
            var flowDrawTab = new FlowDrawTab();

            flowDrawTab.FlowDrawPanel.SearchRequired   += FlowDrawPanel_SearchRequired;
            flowDrawTab.FlowDrawPanel.FlowTreeView      = flowTreeView1;
            flowDrawTab.FlowDrawPanel.FlowPropertyPanel = flowPropertyPanel1;
            if (langProvider != null)
            {
                flowDrawTab.FlowDrawPanel.LanguageProvider = langProvider;
            }
            tabControl1.TabPages.Add(flowDrawTab);
            tabControl1.SelectedTab = flowDrawTab;
        }