如何存储用户名以使用整个应用程序

时间:2014-06-09 07:59:52

标签: c# winforms

我在windows窗体中的应用程序。

我想在整页的页面上方存储用户名和显示。

我也想在整个应用程序中使用此用户名,例如Asp.net中的会话。

4 个答案:

答案 0 :(得分:3)

您需要创建一个包含用户名变量的静态类。

试试这个:

public static class UtilityClass
{
   public static string UserName {get;set;}
}

//access the username as below

string name = UtilityClass.UserName;

答案 1 :(得分:0)

请阅读并使用应用程序设置文件或资源文件。

答案 2 :(得分:0)

创建一个包含用户名变量的模块。

试试这个:

Module FunctionModule
  Public UserName As String   '''Store and Retrieve user name anywhere  

End Module

答案 3 :(得分:0)

在课堂上存储用户名。 在课堂上:

public class clsdata;{puclic Static String username; }

在代码中: 成功登录后

clasData objclass= new clasdata(); clsData.username= username.Text;