From 6040574d8d9263ac50a607d12195c44c3746f47b Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Mon, 19 Oct 2015 20:20:42 -0700 Subject: set up project and base UI for a native windows UI for ZeroTier --- .gitignore | 2 + windows/WinUI/App.config | 6 ++ windows/WinUI/App.xaml | 8 ++ windows/WinUI/App.xaml.cs | 17 ++++ windows/WinUI/MainWindow.xaml | 95 ++++++++++++++++++++ windows/WinUI/MainWindow.xaml.cs | 28 ++++++ windows/WinUI/Properties/AssemblyInfo.cs | 55 ++++++++++++ windows/WinUI/Properties/Resources.Designer.cs | 71 +++++++++++++++ windows/WinUI/Properties/Resources.resx | 117 +++++++++++++++++++++++++ windows/WinUI/Properties/Settings.Designer.cs | 30 +++++++ windows/WinUI/Properties/Settings.settings | 7 ++ windows/WinUI/Themes/Generic.xaml | 7 ++ windows/WinUI/WinUI.csproj | 111 +++++++++++++++++++++++ windows/ZeroTierOne.sln | 79 +++++++++++++++++ 14 files changed, 633 insertions(+) create mode 100644 windows/WinUI/App.config create mode 100644 windows/WinUI/App.xaml create mode 100644 windows/WinUI/App.xaml.cs create mode 100644 windows/WinUI/MainWindow.xaml create mode 100644 windows/WinUI/MainWindow.xaml.cs create mode 100644 windows/WinUI/Properties/AssemblyInfo.cs create mode 100644 windows/WinUI/Properties/Resources.Designer.cs create mode 100644 windows/WinUI/Properties/Resources.resx create mode 100644 windows/WinUI/Properties/Settings.Designer.cs create mode 100644 windows/WinUI/Properties/Settings.settings create mode 100644 windows/WinUI/Themes/Generic.xaml create mode 100644 windows/WinUI/WinUI.csproj diff --git a/.gitignore b/.gitignore index 2dbec1e5..734f73bb 100755 --- a/.gitignore +++ b/.gitignore @@ -75,3 +75,5 @@ java/doc/ java/build_win64/ java/build_win32/ /java/mac32_64/ +windows/WinUI/obj/ +windows/WinUI/bin/ diff --git a/windows/WinUI/App.config b/windows/WinUI/App.config new file mode 100644 index 00000000..8e156463 --- /dev/null +++ b/windows/WinUI/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/windows/WinUI/App.xaml b/windows/WinUI/App.xaml new file mode 100644 index 00000000..3788901a --- /dev/null +++ b/windows/WinUI/App.xaml @@ -0,0 +1,8 @@ + + + + + diff --git a/windows/WinUI/App.xaml.cs b/windows/WinUI/App.xaml.cs new file mode 100644 index 00000000..a97edde7 --- /dev/null +++ b/windows/WinUI/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 WinUI +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/windows/WinUI/MainWindow.xaml b/windows/WinUI/MainWindow.xaml new file mode 100644 index 00000000..c104dfb6 --- /dev/null +++ b/windows/WinUI/MainWindow.xaml @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +