📄 propertyclass.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace 报刊管理.类
{
class PropertyClass
{
private static string sendpopedomvalue;
/// <summary>
/// 传递用户权限
/// </summary>
public static string SendPopedomValue
{
set
{
sendpopedomvalue = value;
}
get
{
return sendpopedomvalue;
}
}
private static string sendnamevalue;
/// <summary>
/// 传递登录人员账号
/// </summary>
public static string SendNameValue
{
set
{
sendnamevalue = value;
}
get
{
return sendnamevalue;
}
}
private static string savepassword;
/// <summary>
/// 获取用户登录密码
/// </summary>
public static string SavePassword
{
set
{
savepassword = value;
}
get
{
return savepassword;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -