public CompareForm(SyntaxAnalysis sa, GPDictionary gpDict, LFDictionary lfDict) { this.sa = sa; this.gpDict = gpDict; this.lfDict = lfDict; InitializeComponent(); }
public ImportGPForm(string fileName, SyntaxAnalysis sa, GPDictionary gpDict) { InitializeComponent(); this.fileName = fileName; this.sa = sa; this.gpDict = gpDict; }
public EditGPDictForm(GPDictionary gpDict, SyntaxAnalysis sa) { InitializeComponent(); this.gpDict = gpDict; this.sa = sa; lbGp.Items.AddRange(gpDict.GetList()); lbGpFreq.Items.AddRange(gpDict.GetFreqList()); labNum.Text = string.Format("Объем: {0}", lbGp.Items.Count); }
public AddGPForm(GovPattern[] arrGp, GPDictionary gpDict) { InitializeComponent(); this.gpDict = gpDict; this.arrGp = arrGp; gpIndex = 0; int valMax = Enum.GetValues(typeof(Actant)).Length; for (int i = 1; i < valMax; i++) { lbAct.Items.Add((Actant)i); } ShowGPInfo(); }
void createGpDictToolStripMenuItem_Click(object sender, EventArgs e) { gpDict = new GPDictionary(); }