2020-04-16 18:52:26 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using System.Windows.Threading;
|
|
|
|
|
|
|
|
|
|
namespace UWUVCI_AIO_WPF.UI.Windows
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaktionslogik für DownloadWait.xaml
|
|
|
|
|
/// </summary>
|
2020-10-02 06:35:10 +00:00
|
|
|
|
|
2020-04-16 18:52:26 +00:00
|
|
|
|
partial class DownloadWait : Window
|
|
|
|
|
{
|
|
|
|
|
MainViewModel mvm;
|
2020-04-20 00:35:31 +00:00
|
|
|
|
DispatcherTimer timer = new DispatcherTimer();
|
2020-04-17 01:28:14 +00:00
|
|
|
|
public DownloadWait(string doing, string msg, MainViewModel mvm)
|
2020-04-16 18:52:26 +00:00
|
|
|
|
{
|
2020-04-30 15:01:41 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2020-10-02 06:35:10 +00:00
|
|
|
|
if (Owner?.GetType() == typeof(MainWindow))
|
2020-04-30 15:01:41 +00:00
|
|
|
|
{
|
2020-10-02 06:35:10 +00:00
|
|
|
|
WindowStartupLocation = WindowStartupLocation.CenterOwner;
|
2020-04-30 15:01:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
2020-10-02 06:35:10 +00:00
|
|
|
|
WindowStartupLocation = WindowStartupLocation.CenterScreen;
|
2020-04-30 15:01:41 +00:00
|
|
|
|
}
|
2020-04-17 01:28:14 +00:00
|
|
|
|
this.mvm = mvm;
|
2020-04-16 18:52:26 +00:00
|
|
|
|
InitializeComponent();
|
|
|
|
|
Key.Text = doing;
|
2020-04-30 15:01:41 +00:00
|
|
|
|
|
2020-04-16 18:52:26 +00:00
|
|
|
|
timer.Interval = TimeSpan.FromSeconds(1);
|
|
|
|
|
timer.Tick += timer_Tick;
|
|
|
|
|
timer.Start();
|
|
|
|
|
}
|
2020-04-18 03:31:36 +00:00
|
|
|
|
public DownloadWait(string doing, string msg, MainViewModel mvm, bool t)
|
|
|
|
|
{
|
2020-04-30 15:01:41 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2020-10-02 06:35:10 +00:00
|
|
|
|
if (Owner?.GetType() != typeof(MainWindow))
|
2020-04-30 15:01:41 +00:00
|
|
|
|
{
|
2020-10-02 06:35:10 +00:00
|
|
|
|
WindowStartupLocation = WindowStartupLocation.CenterScreen;
|
2020-04-30 15:01:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
2020-10-02 06:35:10 +00:00
|
|
|
|
WindowStartupLocation = WindowStartupLocation.CenterScreen;
|
2020-04-30 15:01:41 +00:00
|
|
|
|
}
|
2020-04-18 03:31:36 +00:00
|
|
|
|
this.mvm = mvm;
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
Key.Text = doing;
|
|
|
|
|
DispatcherTimer timer = new DispatcherTimer();
|
|
|
|
|
timer.Interval = TimeSpan.FromSeconds(1);
|
|
|
|
|
timer.Tick += timer_Tick;
|
|
|
|
|
|
2020-05-04 16:20:21 +00:00
|
|
|
|
}
|
|
|
|
|
private void Window_Minimize(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2020-10-02 06:35:10 +00:00
|
|
|
|
WindowState = WindowState.Minimized;
|
2020-05-04 16:20:21 +00:00
|
|
|
|
}
|
2020-04-18 03:31:36 +00:00
|
|
|
|
private void timer_Tick(object sender, EventArgs e)
|
2020-04-16 18:52:26 +00:00
|
|
|
|
{
|
2020-04-17 01:28:14 +00:00
|
|
|
|
msgT.Text = mvm.msg;
|
|
|
|
|
pb.Value = mvm.Progress;
|
2020-04-18 03:31:36 +00:00
|
|
|
|
if(Key.Text.Contains("Downloading Base"))
|
|
|
|
|
{
|
|
|
|
|
if(mvm.Progress < 70)
|
|
|
|
|
{
|
2020-04-19 17:36:03 +00:00
|
|
|
|
mvm.Progress += 1;
|
2020-04-18 03:31:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-16 18:52:26 +00:00
|
|
|
|
if(mvm.Progress == 100)
|
|
|
|
|
{
|
2020-04-20 00:35:31 +00:00
|
|
|
|
timer.Stop();
|
2020-04-18 03:31:36 +00:00
|
|
|
|
Close();
|
2020-04-19 17:36:03 +00:00
|
|
|
|
|
2020-04-16 18:52:26 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-30 15:01:41 +00:00
|
|
|
|
public void changeOwner(MainWindow ow)
|
|
|
|
|
{
|
2020-10-02 06:35:10 +00:00
|
|
|
|
Owner = ow;
|
2020-04-30 15:01:41 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2020-10-02 06:35:10 +00:00
|
|
|
|
if (Owner?.GetType() == typeof(MainWindow))
|
2020-04-30 15:01:41 +00:00
|
|
|
|
{
|
2020-10-02 06:35:10 +00:00
|
|
|
|
WindowStartupLocation = WindowStartupLocation.CenterOwner;
|
|
|
|
|
ShowInTaskbar = false;
|
2020-04-30 15:01:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
2020-10-02 06:35:10 +00:00
|
|
|
|
WindowStartupLocation = WindowStartupLocation.CenterScreen;
|
2020-04-30 15:01:41 +00:00
|
|
|
|
}
|
2020-05-06 21:53:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void wind_Closed(object sender, EventArgs e)
|
|
|
|
|
{
|
2020-05-07 20:00:24 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if ((FindResource("mvm") as MainViewModel).mw != null)
|
|
|
|
|
{
|
|
|
|
|
(FindResource("mvm") as MainViewModel).mw.Topmost = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-11 08:12:03 +00:00
|
|
|
|
catch (Exception )
|
2020-05-07 20:00:24 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2020-05-06 21:53:52 +00:00
|
|
|
|
}
|
2020-04-16 18:52:26 +00:00
|
|
|
|
}
|
|
|
|
|
}
|