This commit is contained in:
2011-03-29 17:30:09 +00:00
parent 7f22d62f00
commit 0d79abd34d
4 changed files with 95 additions and 69 deletions

View File

@@ -357,6 +357,17 @@ namespace Volian.Controls.Library
if (find != null) cmboFindText.Text = find;
}
}
public void ToggleReplaceTab(E_ViewMode vm)
{
if (vm == E_ViewMode.View)
{
if (tabReplace.IsSelected)
tabFind.PerformClick();
tabReplace.Visible = false;
}
else
tabReplace.Visible = true;
}
}
}