From 284f6a73b56e7120892cca7a41bea0e8545d6d2e Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Sun, 7 Jul 2019 18:08:59 +0300 Subject: [PATCH] Add project files. --- App.config | 6 ++ App.xaml | 9 +++ App.xaml.cs | 11 +++ MainWindow.xaml | 97 +++++++++++++++++++++++++ MainWindow.xaml.cs | 85 ++++++++++++++++++++++ ProgressBar.csproj | 98 ++++++++++++++++++++++++++ ProgressBar.sln | 25 +++++++ Properties/AssemblyInfo.cs | 53 ++++++++++++++ Properties/Resources.Designer.cs | 71 +++++++++++++++++++ Properties/Resources.resx | 117 +++++++++++++++++++++++++++++++ Properties/Settings.Designer.cs | 30 ++++++++ Properties/Settings.settings | 7 ++ 12 files changed, 609 insertions(+) create mode 100644 App.config create mode 100644 App.xaml create mode 100644 App.xaml.cs create mode 100644 MainWindow.xaml create mode 100644 MainWindow.xaml.cs create mode 100644 ProgressBar.csproj create mode 100644 ProgressBar.sln create mode 100644 Properties/AssemblyInfo.cs create mode 100644 Properties/Resources.Designer.cs create mode 100644 Properties/Resources.resx create mode 100644 Properties/Settings.Designer.cs create mode 100644 Properties/Settings.settings diff --git a/App.config b/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..12a6b1e --- /dev/null +++ b/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..fe3ffb3 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,11 @@ +using System.Windows; + +namespace ProgressBar +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..e3762f4 --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,97 @@ + + + + + + + + + + + +