public static string LayGiaTri(this MessageBoxType messageType) { switch (messageType) { case MessageBoxType.Information: return(LLanguage.SearchResourceByKey("Utilities.Common.Information")); case MessageBoxType.Warning: return(LLanguage.SearchResourceByKey("Utilities.Common.Warning")); case MessageBoxType.Error: return(LLanguage.SearchResourceByKey("Utilities.Common.Error")); case MessageBoxType.Question: return(LLanguage.SearchResourceByKey("Utilities.Common.Question")); default: return(""); } }
/// <summary> /// Hiển thị message theo key và các tham số truyền vào /// </summary> /// <param name="key">key resource</param> /// <param name="obj">Danh sách các tham số truyền vào</param> /// <param name="type">Loại MessageBox</param> public static void ShowMessage(string key, string[] obj, MessageBoxType type) { key = LLanguage.SearchResourceByKey(key); key = String.Format(key, obj); ShowMessage(key, type); }
public static string SearchResourceByKey(string key, string[] obj) { key = LLanguage.SearchResourceByKey(key); key = String.Format(key, obj); return(key); }