private void ExecuteLoadFileFromListViewCommand(string str)
        {
            Logger.Info("ExecuteLoadFileFromListViewCommand(string str) in MainViewModel");
            Logger.Debug("str: {0}", str);
            var path = Path.Combine(_config.CabinetFilesDirectory(), str + ".json");

            _cabinet.Deserialize(path);
            Create3DCabinet();
            ReloadMyCabinet();
        }