예제 #1
0
파일: UI.cs 프로젝트: datayang/V2RayGCon
 public static void VisitUrl(string msg, string url)
 {
     var text = string.Format("{0}\n{1}", msg, url);
     if (Confirm(text))
     {
         Utils.RunInBackground(() => System.Diagnostics.Process.Start(url));
     }
 }
예제 #2
0
파일: UI.cs 프로젝트: vrnobody/V2RayGCon
 public static void MsgBoxAsync(string title, string content) =>
 Utils.RunInBackground(() => MsgBox(title, content));