From 2cc8134d466a6e7d8f7f0aea2c7464af476f810d Mon Sep 17 00:00:00 2001 From: ProxySU Date: Tue, 10 Mar 2020 07:57:08 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=A6=E4=B9=A0=E4=BD=BF=E7=94=A8=E5=A4=9A?= =?UTF-8?q?=E7=BA=BF=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProxySU/MainWindow.xaml | 17 +++++++++-------- ProxySU/MainWindow.xaml.cs | 19 +++++++++++++++++++ 2 files changed, 28 insertions(+), 8 deletions(-) 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; + } } }