diff --git a/2000sclock/2000sclock.sln b/2000sclock/2000sclock.sln
new file mode 100644
index 0000000..dfce93c
--- /dev/null
+++ b/2000sclock/2000sclock.sln
@@ -0,0 +1,22 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 14
+VisualStudioVersion = 14.0.24720.0
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "2000sclock", "2000sclock\2000sclock.csproj", "{C4D44ABC-661B-4389-89B9-7CF05580826E}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {C4D44ABC-661B-4389-89B9-7CF05580826E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {C4D44ABC-661B-4389-89B9-7CF05580826E}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {C4D44ABC-661B-4389-89B9-7CF05580826E}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {C4D44ABC-661B-4389-89B9-7CF05580826E}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/2000sclock/2000sclock/2000sclock.csproj b/2000sclock/2000sclock/2000sclock.csproj
new file mode 100644
index 0000000..f48112d
--- /dev/null
+++ b/2000sclock/2000sclock/2000sclock.csproj
@@ -0,0 +1,111 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {C4D44ABC-661B-4389-89B9-7CF05580826E}
+ WinExe
+ Properties
+ _2000sclock
+ 2000sclock
+ v4.5.2
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ MSBuild:Compile
+ Designer
+
+
+ App.xaml
+ Code
+
+
+ MainWindow.xaml
+ Code
+
+
+
+
+ Code
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/2000sclock/2000sclock/App.config b/2000sclock/2000sclock/App.config
new file mode 100644
index 0000000..d740e88
--- /dev/null
+++ b/2000sclock/2000sclock/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/2000sclock/2000sclock/App.xaml b/2000sclock/2000sclock/App.xaml
new file mode 100644
index 0000000..2c503a7
--- /dev/null
+++ b/2000sclock/2000sclock/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/2000sclock/2000sclock/App.xaml.cs b/2000sclock/2000sclock/App.xaml.cs
new file mode 100644
index 0000000..f4aecf7
--- /dev/null
+++ b/2000sclock/2000sclock/App.xaml.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace _2000sclock
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/2000sclock/2000sclock/Digital7-rg1mL.ttf b/2000sclock/2000sclock/Digital7-rg1mL.ttf
new file mode 100644
index 0000000..b0d80a8
Binary files /dev/null and b/2000sclock/2000sclock/Digital7-rg1mL.ttf differ
diff --git a/2000sclock/2000sclock/MainWindow.xaml b/2000sclock/2000sclock/MainWindow.xaml
new file mode 100644
index 0000000..5c32b5b
--- /dev/null
+++ b/2000sclock/2000sclock/MainWindow.xaml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/2000sclock/2000sclock/MainWindow.xaml.cs b/2000sclock/2000sclock/MainWindow.xaml.cs
new file mode 100644
index 0000000..8704c4a
--- /dev/null
+++ b/2000sclock/2000sclock/MainWindow.xaml.cs
@@ -0,0 +1,53 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+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 _2000sclock
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ System.Windows.Threading.DispatcherTimer Timer = new System.Windows.Threading.DispatcherTimer();
+ public MainWindow()
+ {
+ InitializeComponent();
+ Timer.Tick += new EventHandler(Timer_Click);
+ Timer.Interval = new TimeSpan(0, 0, 1);
+ Timer.Start();
+ }
+
+ private void Timer_Click(object sender, EventArgs e)
+ {
+ DateTime d;
+ d = DateTime.Now;
+ labelTime.Content = DateTime.Now.ToString("h:mm");
+ lblSeconds.Content = DateTime.Now.ToString("ss");
+ lblDay.Content = d.DayOfWeek;
+ lblDate.Content = DateTime.Now.ToString("dd-MM");
+ }
+
+ private void Window_MouseDown(object sender, MouseButtonEventArgs e)
+ {
+ if (e.ChangedButton == MouseButton.Left)
+ this.DragMove();
+ }
+
+ private void close_Click(object sender, RoutedEventArgs e)
+ {
+ Close();
+ }
+ }
+}
diff --git a/2000sclock/2000sclock/Properties/AssemblyInfo.cs b/2000sclock/2000sclock/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..64c00f7
--- /dev/null
+++ b/2000sclock/2000sclock/Properties/AssemblyInfo.cs
@@ -0,0 +1,55 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("2000sclock")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("2000sclock")]
+[assembly: AssemblyCopyright("Copyright © 2023")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+//In order to begin building localizable applications, set
+//CultureYouAreCodingWith in your .csproj file
+//inside a . For example, if you are using US english
+//in your source files, set the to en-US. Then uncomment
+//the NeutralResourceLanguage attribute below. Update the "en-US" in
+//the line below to match the UICulture setting in the project file.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[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)
+)]
+
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/2000sclock/2000sclock/Properties/Digital7-rg1mL.ttf b/2000sclock/2000sclock/Properties/Digital7-rg1mL.ttf
new file mode 100644
index 0000000..b0d80a8
Binary files /dev/null and b/2000sclock/2000sclock/Properties/Digital7-rg1mL.ttf differ
diff --git a/2000sclock/2000sclock/Properties/Resources.Designer.cs b/2000sclock/2000sclock/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..21d623a
--- /dev/null
+++ b/2000sclock/2000sclock/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace _2000sclock.Properties
+{
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("_2000sclock.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/2000sclock/2000sclock/Properties/Resources.resx b/2000sclock/2000sclock/Properties/Resources.resx
new file mode 100644
index 0000000..ffecec8
--- /dev/null
+++ b/2000sclock/2000sclock/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/2000sclock/2000sclock/Properties/Settings.Designer.cs b/2000sclock/2000sclock/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..73477fc
--- /dev/null
+++ b/2000sclock/2000sclock/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace _2000sclock.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/2000sclock/2000sclock/Properties/Settings.settings b/2000sclock/2000sclock/Properties/Settings.settings
new file mode 100644
index 0000000..8f2fd95
--- /dev/null
+++ b/2000sclock/2000sclock/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/2000sclock/2000sclock/Properties/SinkinSans-500MediumItalic.ttf b/2000sclock/2000sclock/Properties/SinkinSans-500MediumItalic.ttf
new file mode 100644
index 0000000..e76aaf8
Binary files /dev/null and b/2000sclock/2000sclock/Properties/SinkinSans-500MediumItalic.ttf differ
diff --git a/2000sclock/2000sclock/Properties/watchgui.png b/2000sclock/2000sclock/Properties/watchgui.png
new file mode 100644
index 0000000..56cefa5
Binary files /dev/null and b/2000sclock/2000sclock/Properties/watchgui.png differ
diff --git a/2000sclock/2000sclock/SinkinSans-500MediumItalic.ttf b/2000sclock/2000sclock/SinkinSans-500MediumItalic.ttf
new file mode 100644
index 0000000..e76aaf8
Binary files /dev/null and b/2000sclock/2000sclock/SinkinSans-500MediumItalic.ttf differ
diff --git a/2000sclock/2000sclock/bin/Debug/2000sclock.exe b/2000sclock/2000sclock/bin/Debug/2000sclock.exe
new file mode 100644
index 0000000..b441797
Binary files /dev/null and b/2000sclock/2000sclock/bin/Debug/2000sclock.exe differ
diff --git a/2000sclock/2000sclock/bin/Debug/2000sclock.exe.config b/2000sclock/2000sclock/bin/Debug/2000sclock.exe.config
new file mode 100644
index 0000000..d740e88
--- /dev/null
+++ b/2000sclock/2000sclock/bin/Debug/2000sclock.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/2000sclock/2000sclock/bin/Debug/2000sclock.pdb b/2000sclock/2000sclock/bin/Debug/2000sclock.pdb
new file mode 100644
index 0000000..e049f64
Binary files /dev/null and b/2000sclock/2000sclock/bin/Debug/2000sclock.pdb differ
diff --git a/2000sclock/2000sclock/bin/Debug/2000sclock.vshost.exe b/2000sclock/2000sclock/bin/Debug/2000sclock.vshost.exe
new file mode 100644
index 0000000..681ab77
Binary files /dev/null and b/2000sclock/2000sclock/bin/Debug/2000sclock.vshost.exe differ
diff --git a/2000sclock/2000sclock/bin/Debug/2000sclock.vshost.exe.config b/2000sclock/2000sclock/bin/Debug/2000sclock.vshost.exe.config
new file mode 100644
index 0000000..d740e88
--- /dev/null
+++ b/2000sclock/2000sclock/bin/Debug/2000sclock.vshost.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/2000sclock/2000sclock/obj/Debug/2000sclock.csproj.FileListAbsolute.txt b/2000sclock/2000sclock/obj/Debug/2000sclock.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..39779e4
--- /dev/null
+++ b/2000sclock/2000sclock/obj/Debug/2000sclock.csproj.FileListAbsolute.txt
@@ -0,0 +1,14 @@
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\bin\Debug\2000sclock.exe.config
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\bin\Debug\2000sclock.exe
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\bin\Debug\2000sclock.pdb
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\2000sclock.csprojResolveAssemblyReference.cache
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\MainWindow.g.cs
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\App.g.cs
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\2000sclock_MarkupCompile.cache
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\2000sclock_MarkupCompile.lref
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\MainWindow.baml
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\2000sclock.g.resources
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\_2000sclock.Properties.Resources.resources
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\2000sclock.csproj.GenerateResource.Cache
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\2000sclock.exe
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\2000sclock.pdb
diff --git a/2000sclock/2000sclock/obj/Debug/2000sclock.csproj.GenerateResource.Cache b/2000sclock/2000sclock/obj/Debug/2000sclock.csproj.GenerateResource.Cache
new file mode 100644
index 0000000..0334283
Binary files /dev/null and b/2000sclock/2000sclock/obj/Debug/2000sclock.csproj.GenerateResource.Cache differ
diff --git a/2000sclock/2000sclock/obj/Debug/2000sclock.csprojResolveAssemblyReference.cache b/2000sclock/2000sclock/obj/Debug/2000sclock.csprojResolveAssemblyReference.cache
new file mode 100644
index 0000000..2ac8934
Binary files /dev/null and b/2000sclock/2000sclock/obj/Debug/2000sclock.csprojResolveAssemblyReference.cache differ
diff --git a/2000sclock/2000sclock/obj/Debug/2000sclock.exe b/2000sclock/2000sclock/obj/Debug/2000sclock.exe
new file mode 100644
index 0000000..b441797
Binary files /dev/null and b/2000sclock/2000sclock/obj/Debug/2000sclock.exe differ
diff --git a/2000sclock/2000sclock/obj/Debug/2000sclock.g.resources b/2000sclock/2000sclock/obj/Debug/2000sclock.g.resources
new file mode 100644
index 0000000..26c6cbd
Binary files /dev/null and b/2000sclock/2000sclock/obj/Debug/2000sclock.g.resources differ
diff --git a/2000sclock/2000sclock/obj/Debug/2000sclock.pdb b/2000sclock/2000sclock/obj/Debug/2000sclock.pdb
new file mode 100644
index 0000000..e049f64
Binary files /dev/null and b/2000sclock/2000sclock/obj/Debug/2000sclock.pdb differ
diff --git a/2000sclock/2000sclock/obj/Debug/2000sclock_MarkupCompile.cache b/2000sclock/2000sclock/obj/Debug/2000sclock_MarkupCompile.cache
new file mode 100644
index 0000000..ed70e9b
--- /dev/null
+++ b/2000sclock/2000sclock/obj/Debug/2000sclock_MarkupCompile.cache
@@ -0,0 +1,20 @@
+2000sclock
+
+
+winexe
+C#
+.cs
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\
+_2000sclock
+none
+false
+DEBUG;TRACE
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\App.xaml
+11151548125
+
+5-2017746502
+13738642453
+MainWindow.xaml;
+
+False
+
diff --git a/2000sclock/2000sclock/obj/Debug/2000sclock_MarkupCompile.i.cache b/2000sclock/2000sclock/obj/Debug/2000sclock_MarkupCompile.i.cache
new file mode 100644
index 0000000..70afd59
--- /dev/null
+++ b/2000sclock/2000sclock/obj/Debug/2000sclock_MarkupCompile.i.cache
@@ -0,0 +1,20 @@
+2000sclock
+
+
+winexe
+C#
+.cs
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\obj\Debug\
+_2000sclock
+none
+false
+DEBUG;TRACE
+C:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\App.xaml
+11151548125
+
+948840166
+13738642453
+MainWindow.xaml;
+
+True
+
diff --git a/2000sclock/2000sclock/obj/Debug/2000sclock_MarkupCompile.i.lref b/2000sclock/2000sclock/obj/Debug/2000sclock_MarkupCompile.i.lref
new file mode 100644
index 0000000..f27dceb
--- /dev/null
+++ b/2000sclock/2000sclock/obj/Debug/2000sclock_MarkupCompile.i.lref
@@ -0,0 +1,4 @@
+
+
+FC:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\MainWindow.xaml;;
+
diff --git a/2000sclock/2000sclock/obj/Debug/2000sclock_MarkupCompile.lref b/2000sclock/2000sclock/obj/Debug/2000sclock_MarkupCompile.lref
new file mode 100644
index 0000000..f27dceb
--- /dev/null
+++ b/2000sclock/2000sclock/obj/Debug/2000sclock_MarkupCompile.lref
@@ -0,0 +1,4 @@
+
+
+FC:\Users\Mirek\Documents\Visual Studio 2015\Projects\2000sclock\2000sclock\MainWindow.xaml;;
+
diff --git a/2000sclock/2000sclock/obj/Debug/App.g.cs b/2000sclock/2000sclock/obj/Debug/App.g.cs
new file mode 100644
index 0000000..71b3c8b
--- /dev/null
+++ b/2000sclock/2000sclock/obj/Debug/App.g.cs
@@ -0,0 +1,70 @@
+#pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A955AF869CB3D68EE634C57C1F6FA72CB71955CF"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+using _2000sclock;
+
+
+namespace _2000sclock {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public static void Main() {
+ _2000sclock.App app = new _2000sclock.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/2000sclock/2000sclock/obj/Debug/App.g.i.cs b/2000sclock/2000sclock/obj/Debug/App.g.i.cs
new file mode 100644
index 0000000..71b3c8b
--- /dev/null
+++ b/2000sclock/2000sclock/obj/Debug/App.g.i.cs
@@ -0,0 +1,70 @@
+#pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A955AF869CB3D68EE634C57C1F6FA72CB71955CF"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+using _2000sclock;
+
+
+namespace _2000sclock {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public static void Main() {
+ _2000sclock.App app = new _2000sclock.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/2000sclock/2000sclock/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/2000sclock/2000sclock/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..95d4352
Binary files /dev/null and b/2000sclock/2000sclock/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/2000sclock/2000sclock/obj/Debug/MainWindow.baml b/2000sclock/2000sclock/obj/Debug/MainWindow.baml
new file mode 100644
index 0000000..3ba6981
Binary files /dev/null and b/2000sclock/2000sclock/obj/Debug/MainWindow.baml differ
diff --git a/2000sclock/2000sclock/obj/Debug/MainWindow.g.cs b/2000sclock/2000sclock/obj/Debug/MainWindow.g.cs
new file mode 100644
index 0000000..10dcd18
--- /dev/null
+++ b/2000sclock/2000sclock/obj/Debug/MainWindow.g.cs
@@ -0,0 +1,169 @@
+#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DEF54DFF8378B5533881DA15B76F3E3B038BFE87"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+using _2000sclock;
+
+
+namespace _2000sclock {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+
+ #line 13 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button close;
+
+ #line default
+ #line hidden
+
+
+ #line 14 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label labelTime;
+
+ #line default
+ #line hidden
+
+
+ #line 19 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lblSeconds;
+
+ #line default
+ #line hidden
+
+
+ #line 24 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lblDate;
+
+ #line default
+ #line hidden
+
+
+ #line 29 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lblDay;
+
+ #line default
+ #line hidden
+
+
+ #line 34 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label label;
+
+ #line default
+ #line hidden
+
+
+ #line 39 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label label_Copy;
+
+ #line default
+ #line hidden
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/2000sclock;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+ this.close = ((System.Windows.Controls.Button)(target));
+
+ #line 13 "..\..\MainWindow.xaml"
+ this.close.Click += new System.Windows.RoutedEventHandler(this.close_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+ this.labelTime = ((System.Windows.Controls.Label)(target));
+ return;
+ case 3:
+ this.lblSeconds = ((System.Windows.Controls.Label)(target));
+ return;
+ case 4:
+ this.lblDate = ((System.Windows.Controls.Label)(target));
+ return;
+ case 5:
+ this.lblDay = ((System.Windows.Controls.Label)(target));
+ return;
+ case 6:
+ this.label = ((System.Windows.Controls.Label)(target));
+ return;
+ case 7:
+ this.label_Copy = ((System.Windows.Controls.Label)(target));
+ return;
+ case 8:
+
+ #line 44 "..\..\MainWindow.xaml"
+ ((System.Windows.Shapes.Rectangle)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseDown);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/2000sclock/2000sclock/obj/Debug/MainWindow.g.i.cs b/2000sclock/2000sclock/obj/Debug/MainWindow.g.i.cs
new file mode 100644
index 0000000..10dcd18
--- /dev/null
+++ b/2000sclock/2000sclock/obj/Debug/MainWindow.g.i.cs
@@ -0,0 +1,169 @@
+#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DEF54DFF8378B5533881DA15B76F3E3B038BFE87"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+using _2000sclock;
+
+
+namespace _2000sclock {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+
+ #line 13 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Button close;
+
+ #line default
+ #line hidden
+
+
+ #line 14 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label labelTime;
+
+ #line default
+ #line hidden
+
+
+ #line 19 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lblSeconds;
+
+ #line default
+ #line hidden
+
+
+ #line 24 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lblDate;
+
+ #line default
+ #line hidden
+
+
+ #line 29 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label lblDay;
+
+ #line default
+ #line hidden
+
+
+ #line 34 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label label;
+
+ #line default
+ #line hidden
+
+
+ #line 39 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.Label label_Copy;
+
+ #line default
+ #line hidden
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/2000sclock;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+ this.close = ((System.Windows.Controls.Button)(target));
+
+ #line 13 "..\..\MainWindow.xaml"
+ this.close.Click += new System.Windows.RoutedEventHandler(this.close_Click);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+ this.labelTime = ((System.Windows.Controls.Label)(target));
+ return;
+ case 3:
+ this.lblSeconds = ((System.Windows.Controls.Label)(target));
+ return;
+ case 4:
+ this.lblDate = ((System.Windows.Controls.Label)(target));
+ return;
+ case 5:
+ this.lblDay = ((System.Windows.Controls.Label)(target));
+ return;
+ case 6:
+ this.label = ((System.Windows.Controls.Label)(target));
+ return;
+ case 7:
+ this.label_Copy = ((System.Windows.Controls.Label)(target));
+ return;
+ case 8:
+
+ #line 44 "..\..\MainWindow.xaml"
+ ((System.Windows.Shapes.Rectangle)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseDown);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/2000sclock/2000sclock/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/2000sclock/2000sclock/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
new file mode 100644
index 0000000..e69de29
diff --git a/2000sclock/2000sclock/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/2000sclock/2000sclock/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
new file mode 100644
index 0000000..e69de29
diff --git a/2000sclock/2000sclock/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/2000sclock/2000sclock/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
new file mode 100644
index 0000000..e69de29
diff --git a/2000sclock/2000sclock/obj/Debug/_2000sclock.Properties.Resources.resources b/2000sclock/2000sclock/obj/Debug/_2000sclock.Properties.Resources.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/2000sclock/2000sclock/obj/Debug/_2000sclock.Properties.Resources.resources differ
diff --git a/2000sclock/2000sclock/watchgui.png b/2000sclock/2000sclock/watchgui.png
new file mode 100644
index 0000000..56cefa5
Binary files /dev/null and b/2000sclock/2000sclock/watchgui.png differ