17 lines
362 B
C#
17 lines
362 B
C#
using System.Windows;
|
|
|
|
namespace InfineonHMI.Common;
|
|
|
|
/// <summary>
|
|
/// Login or change user dialog.
|
|
/// </summary>
|
|
public partial class UserManagementWindow
|
|
{
|
|
public UserManagementWindow()
|
|
{
|
|
InitializeComponent();
|
|
// Center dialog to MainWindow
|
|
Owner = Application.Current.MainWindow;
|
|
WindowStartupLocation = WindowStartupLocation.CenterOwner;
|
|
}
|
|
} |