Use ToString for ListBox to allow select to find ContentAuditInfo

Use ListString
Select correct item in the Edit Window
Only select tab if it is not selected
This commit is contained in:
Rich
2012-03-22 20:30:43 +00:00
parent c21f8adf32
commit ff71b351e1
2 changed files with 12 additions and 11 deletions

View File

@@ -604,8 +604,11 @@ namespace Volian.Controls.Library
{
if (myDisplayTabItem != null)
{
myDisplayTabItem.Focus();
myDisplayTabItem.Selected = true;
if (!myDisplayTabItem.Selected)
{
myDisplayTabItem.Focus();
myDisplayTabItem.Selected = true;
}
}
}
private DisplayTabItem _SelectedDisplayTabItem=null;