From 9eae49f1d260172f902656b19f2d0371dfce0704 Mon Sep 17 00:00:00 2001 From: Sean McArdle Date: Thu, 17 Nov 2016 10:44:34 -0800 Subject: [PATCH] Pulled in About window and notes from WifiSitterToolbox --- WifiSitterGui/Notes.txt | 23 ++++++++++++++ WifiSitterGui/View/About.xaml | 67 ++++++++++++++++++++++++++++++++++++++++ WifiSitterGui/View/About.xaml.cs | 26 ++++++++++++++++ 3 files changed, 116 insertions(+) create mode 100644 WifiSitterGui/Notes.txt create mode 100644 WifiSitterGui/View/About.xaml create mode 100644 WifiSitterGui/View/About.xaml.cs diff --git a/WifiSitterGui/Notes.txt b/WifiSitterGui/Notes.txt new file mode 100644 index 0000000..c345481 --- /dev/null +++ b/WifiSitterGui/Notes.txt @@ -0,0 +1,23 @@ +- Class Regions - + +#region fields +#endregion // fields + +#region constructor +#endregion // constructor + +#region properties +#endregion // properties + +#region methods +#endregion // methods + +#region commands +#endregion // commands + +#region events +#endregion // events + + +Color Pallet +https://color.adobe.com/create/color-wheel/?base=2&rule=Complementary&selected=0&name=My%20Color%20Theme&mode=rgb&rgbvalues=0.05782394694464945,0.2912650007520878,0.7,0.09999999999999998,0.4271640968657948,1,0,0.36351566318421646,1,0.7,0.4755089048318268,0,1,0.6792984354740383,0&swatchOrder=0,1,2,3,4 diff --git a/WifiSitterGui/View/About.xaml b/WifiSitterGui/View/About.xaml new file mode 100644 index 0000000..a45d331 --- /dev/null +++ b/WifiSitterGui/View/About.xaml @@ -0,0 +1,67 @@ + + + + + + Wifi Sitter + + + + Thank you for using Wifi Sitter, it's been fun and challenging to build. + I hope you've found it useful. + + + The source code to Wifi Sitter is MIT licensed but the install packages and associated + binaries are Emailware; if you found them useful, shoot me an email. I love hearing from users. + + + + + + + - Sean McArdle + + + + + + + The MIT License (MIT) + + + Copyright (c) 20016 Sean McArdle + + + + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + + + + diff --git a/WifiSitterGui/View/About.xaml.cs b/WifiSitterGui/View/About.xaml.cs new file mode 100644 index 0000000..902fb95 --- /dev/null +++ b/WifiSitterGui/View/About.xaml.cs @@ -0,0 +1,26 @@ +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.Shapes; + +namespace WifiSitterGui.View +{ + /// + /// Interaction logic for About.xaml + /// + public partial class About : Window + { + public About() { + InitializeComponent(); + } + } +}