Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/FindAndReplaceDialog.cs @ 10630

Last change on this file since 10630 was 10630, checked in by sbreuer, 10 years ago
  • added FindAndReplaceDialog
File size: 776 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Data;
5using System.Drawing;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9
10namespace HeuristicLab.DataPreprocessing.Views {
11  public partial class FindAndReplaceDialog : Form {
12    public FindAndReplaceDialog() {
13      InitializeComponent();
14    }
15
16    private void tabControl1_SelectedIndexChanged(object sender, System.EventArgs e) {
17      if (sender is TabControl) {
18        TabControl tc = (TabControl)sender;
19        tc.SelectedTab.Controls.Add(btnFindAll);
20        tc.SelectedTab.Controls.Add(btnFindNext);
21        tc.SelectedTab.Controls.Add(lblSearch);
22        tc.SelectedTab.Controls.Add(txtSearchString);
23      }
24    }
25
26  }
27}
Note: See TracBrowser for help on using the repository browser.