Pulled in About window and notes from WifiSitterToolbox

systray
Sean McArdle 2016-11-17 10:44:34 -08:00
parent 8e8d53cafc
commit 9eae49f1d2
3 changed files with 116 additions and 0 deletions

23
WifiSitterGui/Notes.txt Normal file
View File

@ -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

View File

@ -0,0 +1,67 @@
<Window x:Class="WifiSitterGui.View.About"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WifiSitterToolbox"
mc:Ignorable="d"
Title="About" Height="462" Width="412" ResizeMode="NoResize" SizeToContent="Height">
<Grid Background="#0F4AB2">
<RichTextBox Margin="10"
Background="#0F4AB2"
Foreground="White"
BorderThickness="0">
<FlowDocument>
<Paragraph FontFamily="Calibri"
FontSize="24"
FontWeight="Bold"
TextAlignment="Center">
Wifi Sitter
</Paragraph>
<Paragraph Margin="30,0,30,0">
Thank you for using Wifi Sitter, it's been fun and challenging to build.
I hope you've found it useful.
<LineBreak/>
<LineBreak/>
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.
<LineBreak/>
</Paragraph>
<Paragraph Margin="160,0,0,0">
<Italic>
<Run>
- Sean McArdle
</Run>
</Italic>
<LineBreak/>
</Paragraph>
<Paragraph Margin="14, 20,14,4"
Padding="0,10"
FontFamily="Lucida Console"
TextAlignment="Center"
FontSize="10"
BorderBrush="Gray"
BorderThickness="0,2,0,0">
The MIT License (MIT)
<LineBreak/>
<LineBreak/>
Copyright (c) 20016 Sean McArdle
<LineBreak/>
</Paragraph>
<Paragraph Margin="14,0,14,10"
FontFamily="Lucida Console"
TextAlignment="Justify"
FontSize="9">
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.
<LineBreak/>
</Paragraph>
</FlowDocument>
</RichTextBox>
</Grid>
</Window>

View File

@ -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
{
/// <summary>
/// Interaction logic for About.xaml
/// </summary>
public partial class About : Window
{
public About() {
InitializeComponent();
}
}
}