DlgSearchDevices.xaml 1.3 KB

1234567891011121314151617181920212223242526
  1. <Window x:Class="MV485.Dlg.DlgSearchDevices"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:MV485.Dlg"
  7. mc:Ignorable="d"
  8. Width="400" Height="180"
  9. WindowStyle="None"
  10. ShowInTaskbar="False"
  11. WindowStartupLocation="CenterOwner"
  12. Background="Transparent"
  13. AllowsTransparency="True"
  14. Topmost="True">
  15. <Border Background="White" CornerRadius="10" Padding="20" BorderBrush="Gray" BorderThickness="1">
  16. <StackPanel>
  17. <!-- 显示处理进度 -->
  18. <TextBlock Name="progressText" FontSize="16" Text="正在搜索" HorizontalAlignment="Center"/>
  19. <ProgressBar Name="progressBar" IsIndeterminate="True" Height="25" Margin="0,20,0,20"/>
  20. <!--<ProgressBar IsIndeterminate="True" Width="200" Height="10" />-->
  21. <!-- 停止按钮 -->
  22. <Button Name="stopButton" Content="停止搜索" Width="100" Height="35" FontSize="14"
  23. HorizontalAlignment="Center" Click="StopButton_Click"/>
  24. </StackPanel>
  25. </Border>
  26. </Window>