コード例 #1
0
ファイル: FileGadget.cs プロジェクト: Jebeli/Tiles
 public void GoToParent()
 {
     if (!string.IsNullOrEmpty(currentDir))
     {
         string fn = fileResolver.GetParent(currentDir);
         GoToDir(fn);
     }
 }