🎉 增加了相对路径

This commit is contained in:
liufei
2022-06-07 16:34:07 +08:00
parent 9d174ed2fc
commit 7d061abadc
7 changed files with 102 additions and 13 deletions

View File

@@ -24,9 +24,36 @@ namespace GeekDesk.ViewModel
private string startArg; //启动参数
private string lnkPath;
private string relativePath; //相对路径
private IconType iconType = IconType.OTHER;
public string RelativePath_NoWrite
{
get
{
return relativePath;
}
set
{
relativePath = value;
}
}
public string RelativePath
{
get
{
return relativePath;
}
set
{
relativePath = value;
OnPropertyChanged("RelativePath");
}
}
public string LnkPath_NoWrite
{
get