Create PluginDownloader.xaml

This commit is contained in:
Bishbash777
2021-07-28 09:03:36 +01:00
committed by GitHub
parent ff12b214cd
commit 4d01b976f1

View File

@@ -0,0 +1,14 @@
<Window x:Class="Torch.Server.Views.PluginDownloader"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Torch.Server.Views"
mc:Ignorable="d"
ContentRendered="DownloadProgress_ContentRendered"
Title="Plugin Downloader" Height="107.414" Width="369.264" ResizeMode="NoResize" Icon="/Torch.Server;component/torchicon.ico" IsEnabled="False">
<Grid>
<ProgressBar x:Name="downloadProgress" Height="20" Margin="10,31,10,0" VerticalAlignment="Top"/>
</Grid>
</Window>