zhaw-dnet2/Tasks/UrlTester/MainWindow.xaml.cs

35 lines
861 B
C#

using System.Diagnostics;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using DT2;
namespace UrlTester;
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
public void GetUrl(object sender, RoutedEventArgs e)
{
var stopWatch = new Stopwatch();
stopWatch.Start();
int size = new DT2.UrlTester().GetUrlSync(urlBox.Text);
stopWatch.Stop();
bytesBox.Text = $"{size} bytes";
timeBox.Text = $"{stopWatch.ElapsedMilliseconds} ms";
}
}