public EditDocument(Luke parent, int docNum, Document document, Hashtable doc) { // // Required for Windows Form Designer support // InitializeComponent(); this.docNum = docNum; this.document = document; this.luke = parent; luke.PopulateAnalyzers(cmbAnalyzers); cmbAnalyzers.SelectedIndex = 0; groupDocNum.Text = groupDocNum.Text + docNum.ToString(); ReconstructFields(doc); foreach (Field field in fields) { lstFields.Items.Add(field.Name()); } if (lstFields.Items.Count > 0) { lstFields.SelectedIndex = 0; PopulateFieldContent(0); } }
public EditDocument(Luke parent, int docNum, Document document, Hashtable doc) { // // Required for Windows Form Designer support // InitializeComponent(); this.docNum = docNum; this.document = document; this.luke = parent; luke.PopulateAnalyzers(cmbAnalyzers); cmbAnalyzers.SelectedIndex = 0; groupDocNum.Text = groupDocNum.Text + docNum.ToString(); ReconstructFields(doc); foreach (Field field in fields) { lstFields.Items.Add(field.Name); } if (lstFields.Items.Count > 0) { lstFields.SelectedIndex = 0; PopulateFieldContent(0); } }
public OverviewTabPage(Luke luke) { _luke = luke; InitializeComponent(); for (int i = 0; i <= 999999; i++) domainTerms.Items.Add(i); domainTerms.SelectedIndex = 50; SetOverviewContextMenuItems(); }
public OverviewTabPage(Luke luke) { _luke = luke; InitializeComponent(); for (int i = 0; i <= 999999; i++) { domainTerms.Items.Add(i); } domainTerms.SelectedIndex = 50; SetOverviewContextMenuItems(); }
public DocumentsTabPage(Luke luke) { _luke = luke; InitializeComponent(); SetDocumentsContextMenuItems(); }
public SearchTabPage(Luke luke) { _luke = luke; InitializeComponent(); }
public PluginsTabPage(Luke luke) { _luke = luke; InitializeComponent(); }