Registered workfiles can be listed and shown

This commit is contained in:
2015-07-22 10:17:26 +02:00
parent 89af2786f3
commit 461b24cc4f
5 changed files with 55 additions and 9 deletions

View File

@ -338,5 +338,14 @@ namespace CobXmlSupport
saveWin.ShowDialog();
}
private void ShowCode_Load(object sender, EventArgs e)
{
if (parentWindow == null)
{
btnSaveAktualText.Enabled = false;
}
else btnSaveAktualText.Enabled = true;
}
}
}