private string GetHostDeviceKeyTextureLocation(string root_location, HostDevice device, HostKey key)
        {
            string device_location = Path.Combine(root_location, device.Name.Replace("/", "_"));

            return(Path.Combine(device_location, Path.GetFileName(key.TexturePath)));
        }
示例#2
0
 private void DeleteKey(HostKey key)
 {
     HostKeys.Remove(key);
 }