Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/09/14 13:16:54 (10 years ago)
Author:
sbreuer
Message:
  • close find and replace dialog when switching to other view
  • scroll to found cell on find next
  • fix search bug (search even if nothing is selected)
  • set cursor in search field and set find next button to default
  • do not show any icon in find and replace dialog
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/FindAndReplaceDialog.cs

    r10706 r10739  
    2323
    2424    public void ActivateSearch() {
    25       tabSearch.Focus();
     25      tabSearchReplace.SelectTab(tabSearch);
    2626      AddControlsToCurrentTab();
    2727    }
    2828
    2929    public void ActivateReplace() {
    30       tabReplace.Focus();
     30      tabSearchReplace.SelectTab(tabReplace);
    3131      AddControlsToCurrentTab();
    3232    }
     
    4545      tabSearchReplace.SelectedTab.Controls.Add(lblSearch);
    4646      tabSearchReplace.SelectedTab.Controls.Add(txtSearchString);
     47      ActiveControl = txtSearchString;
     48      AcceptButton = btnFindNext;
    4749    }
    4850
Note: See TracChangeset for help on using the changeset viewer.