添加项目文件。

This commit is contained in:
ShrlAlgo
2025-09-16 16:06:41 +08:00
parent 0e7807b826
commit 98c65ceb3d
922 changed files with 1009489 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<Window x:Class="Szmedi.AIScriptRunner.ProgressBarCtrl.ProgressBarCtrl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="ProgressBarCtrl" Height="90" Width="574" WindowStyle="None" BorderThickness="0" Background="{x:Null}" AllowsTransparency="True" WindowStartupLocation="CenterScreen" ShowInTaskbar="False">
<Grid>
<TextBlock Height="20" HorizontalAlignment="Left" Margin="5,-50,0,0" Text="{Binding Message1}" ></TextBlock>
<ProgressBar HorizontalAlignment="Stretch" Name="progressBar" Height="25" Value="{Binding ProgressValue}" Margin="2" Background="#00FFFFFF"/>
<TextBlock x:Name="txtMessage" Height="20" HorizontalAlignment="Center" Margin="2" Text="{Binding Message}" ></TextBlock>
</Grid>
</Window>