コード例 #1
0
ファイル: UserInterface.cs プロジェクト: i-duarte/MyLib.Data
 public static void ShowSecondary(
     this HtmlGenericControl control
     , string msg
     ) => control.ShowAlert(msg, AlertType.Secondary);
コード例 #2
0
ファイル: UserInterface.cs プロジェクト: i-duarte/MyLib.Data
 public static void ShowDanger(
     this HtmlGenericControl control
     , string msg
     ) => control.ShowAlert(msg, AlertType.Danger);
コード例 #3
0
ファイル: UserInterface.cs プロジェクト: i-duarte/MyLib.Data
 public static void ShowSucces(
     this HtmlGenericControl control
     , string msg
     ) => control.ShowAlert(msg, AlertType.Success);
コード例 #4
0
ファイル: UserInterface.cs プロジェクト: i-duarte/MyLib.Data
 public static void ShowWarning(
     this HtmlGenericControl control
     , string msg
     ) => control.ShowAlert(msg, AlertType.Warning);