diff --git a/ProxySU/MainWindow.xaml b/ProxySU/MainWindow.xaml index 3bd96b8..53e8e31 100644 --- a/ProxySU/MainWindow.xaml +++ b/ProxySU/MainWindow.xaml @@ -22,7 +22,9 @@ - + + + @@ -55,14 +57,13 @@ - - - + + + - - + + + diff --git a/ProxySU/MainWindow.xaml.cs b/ProxySU/MainWindow.xaml.cs index 1a5583a..bcb754c 100644 --- a/ProxySU/MainWindow.xaml.cs +++ b/ProxySU/MainWindow.xaml.cs @@ -13,6 +13,8 @@ using System.Windows.Navigation; using System.Windows.Shapes; using Renci.SshNet; using System.Text.RegularExpressions; +using System.Threading; +using System.Threading.Tasks; namespace ProxySU { @@ -315,5 +317,22 @@ namespace ProxySU PasswordBoxProxyPassword.IsEnabled = true; } #endregion + private void Begin(TextBlock textBlock) + { + //int i = 100000000; + //while (i > 0) + //{ + // i--; + //} + //Random random = new Random(); + //String Num = random.Next(0, 100).ToString(); + Action updateAction = new Action(UpdateTextBlockSetUpProcessing); + TextBlockSetUpProcessing.Dispatcher.BeginInvoke(updateAction, textBlock, Num); + } + //更新UI代码 + private void UpdateTextBlockSetUpProcessing(TextBlock textBlock, string text) + { + textBlock.Text = text; + } } }