Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
4.4.2.0 更新
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceTimee committed Jul 10, 2022
1 parent 15e107a commit bcc297f
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Vizpower Plugin Installer/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
mc:Ignorable="d"
Background="{StaticResource MaterialDesignBackground}"
FontFamily="Segoe UI, Microsoft YaHei UI" FontSize="14"
Title="无限宝第三方插件安装器" Height="245" Width="450" ResizeMode="CanMinimize">
Title="无限宝第三方插件安装器" Height="245" Width="450" ResizeMode="CanMinimize" KeyDown="MainWin_KeyDown">
<Grid Margin="10,0,10,10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
Expand Down
13 changes: 10 additions & 3 deletions Vizpower Plugin Installer/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private async void CheckUpdateOnline()
}
catch
{
Dispatcher.Invoke(() => { MessageBox.Show("检查更新时发生错误,请检查网络连接", Title, MessageBoxButtons.OK, MessageBoxIcon.Error); });
Dispatcher.Invoke(() => { MessageBox.Show("检查更新失败", Title, MessageBoxButtons.OK, MessageBoxIcon.Error); });
return;
}
}
Expand Down Expand Up @@ -249,9 +249,9 @@ private void AboutButton_Click(object sender, RoutedEventArgs e)
(
@"欢迎使用无限宝第三方插件安装器
反馈请加QQ群: 904645614
反馈请加 QQ 群: 904645614
插件/安装器开发者:
插件 / 安装器开发者:
秋小十,快乐小牛,极地萤火,
阳莱,凌莞,WXRIW,Space Time
Expand Down Expand Up @@ -286,5 +286,12 @@ private void VideoLabel_MouseDown(object sender, MouseButtonEventArgs e)
{
Process.Start(InstallVideoUrl);
}

//窗口强关热键
private void MainWin_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
if (e.KeyboardDevice.Modifiers == ModifierKeys.Control && e.Key == Key.W)
Environment.Exit(0);
}
}
}
4 changes: 2 additions & 2 deletions Vizpower Plugin Installer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.4.1")]
[assembly: AssemblyFileVersion("4.4.1")]
[assembly: AssemblyVersion("4.4.2")]
[assembly: AssemblyFileVersion("4.4.2")]
Binary file modified Vizpower Plugin Installer/Resources/CaptureDesktop.dll
Binary file not shown.
Binary file modified Vizpower Plugin Installer/Resources/OriginalCaptureDesktop.dll
Binary file not shown.
Binary file modified Vizpower Plugin Installer/Resources/WxbPluginGUI.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions Vizpower Plugin Installer/Vizpower Plugin Installer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<None Include="Resources\OriginalCaptureDesktop.dll" />
<Resource Include="Icon.ico" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\CaptureDesktop.dll" />
Expand All @@ -158,7 +158,7 @@
<None Include="Resources\WxbPluginGUI.exe" />
</ItemGroup>
<ItemGroup>
<Resource Include="Icon.ico" />
<None Include="Resources\OriginalCaptureDesktop.dll" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\MaterialDesignThemes.4.3.0\build\MaterialDesignThemes.targets" Condition="Exists('..\packages\MaterialDesignThemes.4.3.0\build\MaterialDesignThemes.targets')" />
Expand Down

0 comments on commit bcc297f

Please sign in to comment.