主界面左侧菜单相关

This commit is contained in:
cyf
2026-07-03 14:45:29 +08:00
parent aacefa24f8
commit 57ff1ea406
2 changed files with 20 additions and 11 deletions
+15
View File
@@ -203,6 +203,21 @@ namespace Lskj.Util
{
get { return BitMapPath + "Main/Module/"; }
}
/// <summary>
/// 主界面左侧树图标路径
/// </summary>
public static string MainTreeviewImagePath
{
get
{
string path = BitMapPath + "Main\\MainTreeview\\";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
return path;
}
}
public static string MesItemImage
{
get { return BitMapPath + "MesItem/"; }