This commit is contained in:
Kathy Ruffing 2010-09-28 17:04:15 +00:00
parent c9e16ed09e
commit 2ac1894439

View File

@ -59,7 +59,11 @@ namespace Volian.Controls.Library
/// </summary>
public ItemInfo SelectedItemInfo
{
get { return _MyStepTabPanel.SelectedItemInfo; }
get
{
if (_MyStepTabPanel == null) return null;
return _MyStepTabPanel.SelectedItemInfo;
}
set { _MyStepTabPanel.SelectedItemInfo = value; }
}
/// <summary>