文件上传添加 test窗口
parent
74fa884eda
commit
4d8da75e75
@ -1,13 +1,18 @@
|
||||
<Window x:Class="Hopytry.MainWindow"
|
||||
<Window
|
||||
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:Hopytry"
|
||||
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" x:Class="Hopytry.MainWindow"
|
||||
mc:Ignorable="d"
|
||||
Title="MainWindow" Height="450" Width="800">
|
||||
|
||||
<Grid>
|
||||
|
||||
|
||||
<ui:Button Content="Button" HorizontalAlignment="Left" Margin="270,217,0,0" VerticalAlignment="Top" Click="Button_Click"/>
|
||||
<ui:ProgressRing HorizontalAlignment="Left" Margin="489,308,0,0" VerticalAlignment="Top"/>
|
||||
<ProgressBar HorizontalAlignment="Left" Height="10" Margin="342,345,0,0" VerticalAlignment="Top" Width="100"/>
|
||||
|
||||
</Grid>
|
||||
</Window>
|
||||
|
||||
@ -0,0 +1,18 @@
|
||||
<Window
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:dlg="clr-namespace:Microsoft.Win32;assembly=PresentationFramework"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:Hopetry"
|
||||
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" x:Class="Hopetry.test"
|
||||
mc:Ignorable="d"
|
||||
Title="test" Height="450" Width="800">
|
||||
<Grid>
|
||||
|
||||
<ui:Button Content="选择文件" HorizontalAlignment="Left" Margin="111,197,0,0" VerticalAlignment="Top" Click="Button_Click"/>
|
||||
<ProgressBar Name="progressBar" HorizontalAlignment="Left" Height="10" Margin="177,277,0,0" VerticalAlignment="Top" Width="100" ValueChanged="progressBar_ValueChanged"/>
|
||||
<TextBox Name="StatusText" HorizontalAlignment="Left" Margin="385,328,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="120"/>
|
||||
|
||||
</Grid>
|
||||
</Window>
|
||||
Loading…
Reference in New Issue