1234567891011121314151617181920212223242526 |
- <Window x:Class="MV485.Dlg.DlgSearchDevices"
- 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:MV485.Dlg"
- mc:Ignorable="d"
- Width="400" Height="180"
- WindowStyle="None"
- ShowInTaskbar="False"
- WindowStartupLocation="CenterOwner"
- Background="Transparent"
- AllowsTransparency="True"
- Topmost="True">
- <Border Background="White" CornerRadius="10" Padding="20" BorderBrush="Gray" BorderThickness="1">
- <StackPanel>
- <!-- 显示处理进度 -->
- <TextBlock Name="progressText" FontSize="16" Text="正在搜索" HorizontalAlignment="Center"/>
- <ProgressBar Name="progressBar" IsIndeterminate="True" Height="25" Margin="0,20,0,20"/>
- <!--<ProgressBar IsIndeterminate="True" Width="200" Height="10" />-->
- <!-- 停止按钮 -->
- <Button Name="stopButton" Content="停止搜索" Width="100" Height="35" FontSize="14"
- HorizontalAlignment="Center" Click="StopButton_Click"/>
- </StackPanel>
- </Border>
- </Window>
|