WPF控件-16-ProgressBar

This commit is contained in:
Bunny 2025-01-09 11:13:17 +08:00
parent cac48332c9
commit a2470810af
8 changed files with 94 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<Application x:Class="WPF控件_16_ProgressBar.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WPF控件_16_ProgressBar"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

View File

@ -0,0 +1,12 @@
using System.Configuration;
using System.Data;
using System.Windows;
namespace WPF控件_16_ProgressBar;
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}

View File

@ -0,0 +1,10 @@
using System.Windows;
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]

View File

@ -0,0 +1,16 @@
<Window x:Class="WPF控件_16_ProgressBar.MainWindow"
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"
mc:Ignorable="d"
Icon="public/003540AH4M72.jpg"
Title="WPF控件_16_ProgressBar" Height="450" Width="800">
<StackPanel>
<Label Content="工作中的" />
<ProgressBar Height="18" Width="200" IsIndeterminate="True" />
<Label>进度条</Label>
<ProgressBar Width="200" Height="18" Value="10" Maximum="100" Minimum="0" />
</StackPanel>
</Window>

View File

@ -0,0 +1,23 @@
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace WPF控件_16_ProgressBar;
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}

View File

@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>WPF控件_16_ProgressBar</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<Resource Include="public\003540AH4M72.jpg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
</Project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

View File

@ -40,6 +40,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-16-ScrollBar", "W
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-16-Slider", "WPF控件-16-Slider\WPF控件-16-Slider.csproj", "{F4A87CBB-4D40-460B-BB0E-283767B454D3}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-16-Slider", "WPF控件-16-Slider\WPF控件-16-Slider.csproj", "{F4A87CBB-4D40-460B-BB0E-283767B454D3}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-16-ProgressBar", "WPF控件-16-ProgressBar\WPF控件-16-ProgressBar.csproj", "{784E2542-E11F-4039-82AC-D8BC390E415B}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
@ -126,5 +128,9 @@ Global
{F4A87CBB-4D40-460B-BB0E-283767B454D3}.Debug|Any CPU.Build.0 = Debug|Any CPU {F4A87CBB-4D40-460B-BB0E-283767B454D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F4A87CBB-4D40-460B-BB0E-283767B454D3}.Release|Any CPU.ActiveCfg = Release|Any CPU {F4A87CBB-4D40-460B-BB0E-283767B454D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F4A87CBB-4D40-460B-BB0E-283767B454D3}.Release|Any CPU.Build.0 = Release|Any CPU {F4A87CBB-4D40-460B-BB0E-283767B454D3}.Release|Any CPU.Build.0 = Release|Any CPU
{784E2542-E11F-4039-82AC-D8BC390E415B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{784E2542-E11F-4039-82AC-D8BC390E415B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{784E2542-E11F-4039-82AC-D8BC390E415B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{784E2542-E11F-4039-82AC-D8BC390E415B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
EndGlobal EndGlobal