Using Logon instead of Name in Password dialog display

This commit is contained in:
Daniel Schick 2024-02-29 06:56:21 +01:00
parent 858fc7f7b0
commit bacc1f0685

View File

@ -77,7 +77,7 @@ namespace ENI2.EditControls
private void EditWindowBase_Loaded(object sender, RoutedEventArgs e)
{
this.textBlockName.Text = CurrentUser.Name;
this.textBlockName.Text = CurrentUser.Logon;
this.AddVisible = false;
this.OkVisible = false;
var cancelButton = (Button)Template.FindName("buttonCancel", this);