移除LocExtension中如果查找ResourceKey失败,返回的字串中的"Key:"字样。

This commit is contained in:
SL 2023-12-21 15:51:02 +08:00
parent 0f0c233576
commit 75fece16a8
1 changed files with 1 additions and 1 deletions

View File

@ -625,7 +625,7 @@ namespace WPFLocalizeExtension.Extensions
case FallbackBehavior.Default:
default:
result = "Key: " + _key;
result = _key;
break;
}
}