Added logic to support selection of found text from Search results
This commit is contained in:
parent
f513b0ca1c
commit
2ac80ea219
@ -66,6 +66,16 @@ namespace Volian.Controls.Library
|
|||||||
get { return _MyStepPanel.MyProcedureItemInfo; }
|
get { return _MyStepPanel.MyProcedureItemInfo; }
|
||||||
set { _MyStepPanel.MyProcedureItemInfo = value; }
|
set { _MyStepPanel.MyProcedureItemInfo = value; }
|
||||||
}
|
}
|
||||||
|
private String _SearchString;
|
||||||
|
public String SearchString
|
||||||
|
{
|
||||||
|
get { return _SearchString; }
|
||||||
|
set { _SearchString = value; FindSearchString(); }
|
||||||
|
}
|
||||||
|
public void FindSearchString()
|
||||||
|
{
|
||||||
|
SelectedStepItem.MyStepRTB.Find(SearchString);
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region Contructors
|
#region Contructors
|
||||||
public StepTabPanel(DisplayTabControl myDisplayTabControl)
|
public StepTabPanel(DisplayTabControl myDisplayTabControl)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user