private void ClientInfo_Click(object sender, RoutedEventArgs e) { ClientInfoView clientWindow = new ClientInfoView(currentUser.login); clientWindow.Show(); clientWindow.Top = this.Top; clientWindow.Left = this.Left; clientWindow.Width = this.Width; clientWindow.Height = this.Height; this.Close(); }
private void OpenClientDetails() { ClientInfoView clientInfo = new ClientInfoView(); clientInfo.Show(); }