diff --git a/WPF控件-16-ProgressBar/App.xaml b/WPF控件-16-ProgressBar/App.xaml new file mode 100644 index 0000000..1b474c8 --- /dev/null +++ b/WPF控件-16-ProgressBar/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/WPF控件-16-ProgressBar/App.xaml.cs b/WPF控件-16-ProgressBar/App.xaml.cs new file mode 100644 index 0000000..1a1a154 --- /dev/null +++ b/WPF控件-16-ProgressBar/App.xaml.cs @@ -0,0 +1,12 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace WPF控件_16_ProgressBar; + +/// +/// Interaction logic for App.xaml +/// +public partial class App : Application +{ +} \ No newline at end of file diff --git a/WPF控件-16-ProgressBar/AssemblyInfo.cs b/WPF控件-16-ProgressBar/AssemblyInfo.cs new file mode 100644 index 0000000..4a05c7d --- /dev/null +++ b/WPF控件-16-ProgressBar/AssemblyInfo.cs @@ -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) +)] \ No newline at end of file diff --git a/WPF控件-16-ProgressBar/MainWindow.xaml b/WPF控件-16-ProgressBar/MainWindow.xaml new file mode 100644 index 0000000..c764b66 --- /dev/null +++ b/WPF控件-16-ProgressBar/MainWindow.xaml @@ -0,0 +1,16 @@ + + + + \ No newline at end of file diff --git a/WPF控件-16-ProgressBar/MainWindow.xaml.cs b/WPF控件-16-ProgressBar/MainWindow.xaml.cs new file mode 100644 index 0000000..b7fdde0 --- /dev/null +++ b/WPF控件-16-ProgressBar/MainWindow.xaml.cs @@ -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; + +/// +/// Interaction logic for MainWindow.xaml +/// +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/WPF控件-16-ProgressBar/WPF控件-16-ProgressBar.csproj b/WPF控件-16-ProgressBar/WPF控件-16-ProgressBar.csproj new file mode 100644 index 0000000..c4ce5dc --- /dev/null +++ b/WPF控件-16-ProgressBar/WPF控件-16-ProgressBar.csproj @@ -0,0 +1,18 @@ + + + + WinExe + net8.0-windows + WPF控件_16_ProgressBar + enable + enable + true + + + + + Always + + + + diff --git a/WPF控件-16-ProgressBar/public/003540AH4M72.jpg b/WPF控件-16-ProgressBar/public/003540AH4M72.jpg new file mode 100644 index 0000000..4aa96ac Binary files /dev/null and b/WPF控件-16-ProgressBar/public/003540AH4M72.jpg differ diff --git a/WPF控件.sln b/WPF控件.sln index 5570b39..7d1ef9b 100644 --- a/WPF控件.sln +++ b/WPF控件.sln @@ -40,6 +40,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-16-ScrollBar", "W EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-16-Slider", "WPF控件-16-Slider\WPF控件-16-Slider.csproj", "{F4A87CBB-4D40-460B-BB0E-283767B454D3}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-16-ProgressBar", "WPF控件-16-ProgressBar\WPF控件-16-ProgressBar.csproj", "{784E2542-E11F-4039-82AC-D8BC390E415B}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution 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}.Release|Any CPU.ActiveCfg = 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 EndGlobal