mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
Add new version window
This commit is contained in:
23
Wox/Update/NewVersionWindow.xaml
Normal file
23
Wox/Update/NewVersionWindow.xaml
Normal file
@@ -0,0 +1,23 @@
|
||||
<Window x:Class="Wox.Update.NewVersionWindow"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
Icon="..\Images\app.png"
|
||||
Topmost="True"
|
||||
WindowStartupLocation="CenterScreen"
|
||||
Title="New Version Found" Height="120" Width="300">
|
||||
<Grid Margin="10">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="120"></ColumnDefinition>
|
||||
<ColumnDefinition></ColumnDefinition>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="30"></RowDefinition>
|
||||
<RowDefinition Height="30"></RowDefinition>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<TextBlock Grid.Column="0" Grid.Row="0" Margin="6" HorizontalAlignment="Left" Text="Current Version"></TextBlock>
|
||||
<TextBlock Grid.Column="1" Grid.Row="0" Margin="6" HorizontalAlignment="Left" x:Name="tbCurrentVersion" Text="1.0.0"></TextBlock>
|
||||
<TextBlock Grid.Column="0" Grid.Row="1" Margin="6" HorizontalAlignment="Left" Text="New Version"></TextBlock>
|
||||
<TextBlock Grid.Column="1" Grid.Row="1" Margin="6" HorizontalAlignment="Left" x:Name="tbNewVersion" Foreground="Blue" Cursor="Hand" MouseUp="tbNewVersion_MouseUp" Text="1.0.0"></TextBlock>
|
||||
</Grid>
|
||||
</Window>
|
||||
48
Wox/Update/NewVersionWindow.xaml.cs
Normal file
48
Wox/Update/NewVersionWindow.xaml.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
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;
|
||||
|
||||
namespace Wox.Update
|
||||
{
|
||||
/// <summary>
|
||||
/// NewVersionWindow.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class NewVersionWindow : Window
|
||||
{
|
||||
public NewVersionWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
tbCurrentVersion.Text = ConfigurationManager.AppSettings["version"];
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user