I would like to display the Username in my WPF application, where it should get the username from the current user logged in?
so my question how can we get the username of windows logged in user from WPF App ?
GetCurrent(). Name; Returns: NetworkName\Username. Gets the user's Windows logon name.
System.Security.Principal.WindowsIdentity.GetCurrent().Name
I also found:
Environment.UserName
or
System.Windows.Forms.SystemInformation.UserName
I cannot try it so check for yourself the result.
Added: Full user name:
Imports System.DirectoryServices.AccountManagement Dim userFullName As String = UserPrincipal.Current.DisplayName
Call WindowsIdentity.GetCurrent()
to get the Windows user identity.
You can get the name from this.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With