コード例 #1
0
 /// <summary>
 /// Shows the update dialog
 /// </summary>
 public static void Show(Boolean silent)
 {
     silentCheck = silent;
     using (UpdateDialog updateDialog = new UpdateDialog())
         if (!silentCheck)
         {
             updateDialog.ShowDialog();
         }
 }
コード例 #2
0
 /// <summary>
 /// Shows the update dialog
 /// </summary>
 public static new void Show()
 {
     UpdateDialog updateDialog = new UpdateDialog();
     updateDialog.ShowDialog();
 }
コード例 #3
0
 /// <summary>
 /// Shows the update dialog
 /// </summary>
 public static void Show(Boolean silent)
 {
     silentCheck = silent;
     UpdateDialog updateDialog = new UpdateDialog();
     if (!silentCheck) updateDialog.ShowDialog();
 }
コード例 #4
0
        /// <summary>
        /// Shows the update dialog
        /// </summary>
        public static new void Show()
        {
            UpdateDialog updateDialog = new UpdateDialog();

            updateDialog.ShowDialog();
        }