This commit is contained in:
Kathy Ruffing 2009-11-03 16:33:46 +00:00
parent 391cbaea39
commit b84bf35339

View File

@ -63,6 +63,11 @@ namespace Volian.Controls.Library
private void listBoxLibDocs_Click(object sender, EventArgs e)
{
if (listBoxLibDocs.SelectedIndex == _SelectedLibDoc) return;
UpdateUsageList();
}
private void UpdateUsageList()
{
groupPanelLibDocs.Style.BackColor = Color.Orange;
_SelectedLibDoc = listBoxLibDocs.SelectedIndex;
listBoxUsages.Items.Clear();
@ -81,7 +86,7 @@ namespace Volian.Controls.Library
// from usage list), otherwise disable buttons & list usages
DocumentInfo dicnt = LibDocList[_SelectedLibDoc];
ItemInfoList iil = dicnt.LibraryDocumentUsageList;
groupPanelUsages.Style.BackColor = dicnt.LibraryDocumentUsageList==null||dicnt.LibraryDocumentUsageList.Count==0 ? this.saveGroupPanelUsages : Color.LightGreen;
groupPanelUsages.Style.BackColor = dicnt.LibraryDocumentUsageList == null || dicnt.LibraryDocumentUsageList.Count == 0 ? this.saveGroupPanelUsages : Color.LightGreen;
if (iil == null)
{
btnDelLibDoc.Enabled = true;
@ -130,7 +135,10 @@ namespace Volian.Controls.Library
if (chg == true)
{
doc.Save();
int cursel = _SelectedLibDoc;
LibDocListFillIn(_DisplayTabControl);
listBoxLibDocs.SelectedIndex = cursel;
UpdateUsageList();
}
}
private void btnCancel_Click(object sender, EventArgs e)