Beispiel #1
0
    private void Btn_PreFolder()                            // 到上一文件夹
    {
        string prePath = mFileBrowser.GetPreFolderPath();

        if (string.IsNullOrEmpty(prePath))
        {
            MyLog.Red("没有下个文件夹了");
        }
        else
        {
            mFileBrowser.Relocate(prePath);
            RefreshMiddleContent();
        }
    }