DownloadDialog.xaml 846 B

12345678910111213141516171819
  1. <ContentDialog
  2. x:Uid="Downloading"
  3. x:Class="SDLPal.DownloadDialog"
  4. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  6. xmlns:local="using:SDLPal"
  7. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. mc:Ignorable="d"
  10. Title="正在下载……"
  11. PrimaryButtonText="停止"
  12. PrimaryButtonClick="OnPrimaryButtonClick"
  13. MinHeight="0" MinWidth="0" Closing="OnClosing" Opened="OnOpened">
  14. <StackPanel Orientation="Vertical">
  15. <ProgressBar x:Name="pbDownload" HorizontalAlignment="Stretch" Height="10" VerticalAlignment="Top" />
  16. <TextBlock x:Name="tbProgress" HorizontalAlignment="Right" Text="0 / 0" />
  17. </StackPanel>
  18. </ContentDialog>