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; } }
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; }