| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Operate.Converts
- {
- public static class KeyToStringConvert
- {
- public static string GetLanguageStringByKey(string key)
- {
- try
- {
- object value = App.Current.TryFindResource(key);
- return value == null ? "" : value.ToString();
- }
- catch (Exception)
- {
- return "";
- }
- }
- }
- }
|