Es wird nach aktuelle Besatzung gefragt

This commit is contained in:
HuskyTeufel
2021-04-29 12:42:49 +02:00
parent a5677a93e7
commit 1112644cfe
9 changed files with 313 additions and 29 deletions

View File

@@ -396,5 +396,13 @@ namespace SanSystem
generateDichtheitsprüfung.Start();
}
private void txt_besatzung_Enter(object sender, EventArgs e)
{
if (txt_besatzung.Text.Equals(string.Empty) && Global.Instance.AktuelleBesatzung != string.Empty)
{
txt_besatzung.Text = Global.Instance.AktuelleBesatzung;
}
}
}
}