123456789101112131415161718192021 |
- <ContentDialog
- x:Uid="Downloading"
- x:Class="SDLPal.DownloadDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="using:SDLPal"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d"
- Title="正在下载……"
- PrimaryButtonText="停止"
- PrimaryButtonClick="OnPrimaryButtonClick"
- MinHeight="0" MinWidth="0"
- Closing="OnClosing" Opened="OnOpened" SizeChanged="OnSizeChanged">
- <StackPanel Orientation="Vertical">
- <WebView x:Name="DownloadPage" NavigationStarting="OnNavigateStart" DOMContentLoaded="OnDOMContentLoaded" ScrollViewer.HorizontalScrollMode="Auto" ScrollViewer.VerticalScrollMode="Auto" />
- <ProgressBar x:Name="pbDownload" HorizontalAlignment="Stretch" Height="12" Margin="0,8,0,4" />
- <TextBlock x:Name="tbProgress" HorizontalAlignment="Right" Height="20" Margin="0,4,0,0" Text="0 / 0" />
- </StackPanel>
- </ContentDialog>
|