今回は絞り込み検索の機能を追加します。検索結果を検索対象にします。
検索をクリックするとフィールド変数 _treeNodeExesを利用して、ここから指定されたワードがあるかどうか探します。みつかったらretTreeNodeExesにTreeNodeExを格納して、新しいSearchResultFormオブジェクトを生成します。そして検索結果を表示します。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
public partial class SearchResultForm : Form { private void buttonSearch_Click(object sender, EventArgs e) { Task.Run(() => { SearchString(); }).ConfigureAwait(false); } void SearchString() { string str = textBox1.Text; if (str == "") { MessageBox.Show("検索文字列が入力されていません", "エラー", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } IsCancel = false; EnableButtons(false); SearchResultForm form = new SearchResultForm(); progressBar1.Minimum = 0; progressBar1.Maximum = _treeNodeExes.Count; List<TreeNodeEx> retTreeNodeExes = new List<TreeNodeEx>(); foreach (TreeNodeEx node in _treeNodeExes) { if (IsCancel) { form.Dispose(); progressBar1.Value = 0; EnableButtons(true); return; } progressBar1.Value++; Data data = (Data)node.Data; string text = data.RichData.Text; if (text == null || text == "") continue; if (text.IndexOf(textBox1.Text) != -1) { retTreeNodeExes.Add(node); } } if (retTreeNodeExes.Count == 0) { progressBar1.Value = 0; MessageBox.Show("文字列は見つかりませんでした", "検索結果"); form.Dispose(); EnableButtons(true); } progressBar1.Minimum = 0; progressBar1.Maximum = 0; progressBar1.Value = 0; form._treeNodeExes = retTreeNodeExes; form.UpdateSearchResult(); form._str = str; Form1._searchResultForms.Add(form); EnableButtons(true); form.Text = String.Format("「{0}」の検索結果", str); form.ShowDialog(); } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
public partial class SearchResultForm : Form { void UpdateSearchResult() { if (_treeNodeExes == null) return; listBox1.Items.Clear(); foreach (TreeNodeEx nodeEx in _treeNodeExes) { listBox1.Items.Add(nodeEx.Text); } } bool IsCancel { get; set; } = false; private void buttonCancel_Click(object sender, EventArgs e) { IsCancel = true; } void EnableButtons(bool isEnable) { this.buttonNext.Enabled = isEnable; this.buttonPrev.Enabled = isEnable; this.buttonSearch.Enabled = isEnable; } } |