mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
47 lines
1.3 KiB
C#
47 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
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.Shapes;
|
|
using Wox.Core.Version;
|
|
|
|
namespace Wox.Update
|
|
{
|
|
public partial class NewVersionWindow : Window
|
|
{
|
|
public NewVersionWindow()
|
|
{
|
|
InitializeComponent();
|
|
|
|
tbCurrentVersion.Text = VersionManager.Instance.CurrentVersion.ToString();
|
|
Release newRelease = new UpdateChecker().CheckUpgrade();
|
|
if (newRelease == null)
|
|
{
|
|
tbNewVersion.Visibility = Visibility.Collapsed;
|
|
}
|
|
else
|
|
{
|
|
tbNewVersion.Text = newRelease.version;
|
|
}
|
|
}
|
|
|
|
private void tbNewVersion_MouseUp(object sender, MouseButtonEventArgs e)
|
|
{
|
|
Release newRelease = new UpdateChecker().CheckUpgrade();
|
|
if (newRelease != null)
|
|
{
|
|
Process.Start("http://www.getwox.com/release/version/" + newRelease.version);
|
|
}
|
|
}
|
|
}
|
|
}
|