📄 value.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace BMS
{
class Value
{
public static string bookid;
public static string Bookid
{
get { return Value.bookid; }
set { Value.bookid = value; }
}
public static string readerid;
public static string Readerid
{
get { return Value.readerid; }
set { Value.readerid = value; }
}
public static string borrowreturn;
public static string Borrowreturn
{
get { return Value.borrowreturn; }
set { Value.borrowreturn = value; }
}
private static string mainform;
public static string Mainform
{
get { return Value.mainform; }
set { Value.mainform = value; }
}
public static string CurrentLoger;
public static string CurrentLoger1
{
get { return Value.CurrentLoger; }
set { Value.CurrentLoger = value; }
}
public static string tablename;
public static string Tablename
{
get { return Value.tablename; }
set { Value.tablename = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -