]> fbox.kageds.com Git - NEATEST.git/commitdiff
1st commit
authorgareth <ge@kagesys.com>
Sun, 10 May 2020 12:06:53 +0000 (13:06 +0100)
committergareth <ge@kagesys.com>
Sun, 10 May 2020 12:06:53 +0000 (13:06 +0100)
36 files changed:
NEATEST.sln [new file with mode: 0644]
NEATEST/App.config [new file with mode: 0644]
NEATEST/Application.xaml [new file with mode: 0644]
NEATEST/Application.xaml.vb [new file with mode: 0644]
NEATEST/MainWindow.xaml [new file with mode: 0644]
NEATEST/MainWindow.xaml.vb [new file with mode: 0644]
NEATEST/My Project/AssemblyInfo.vb [new file with mode: 0644]
NEATEST/My Project/MyExtensions/MyWpfExtension.vb [new file with mode: 0644]
NEATEST/My Project/Resources.Designer.vb [new file with mode: 0644]
NEATEST/My Project/Resources.resx [new file with mode: 0644]
NEATEST/My Project/Settings.Designer.vb [new file with mode: 0644]
NEATEST/My Project/Settings.settings [new file with mode: 0644]
NEATEST/NEATEST.vbproj [new file with mode: 0644]
NEATEST/bin/Debug/NEATEST.exe [new file with mode: 0644]
NEATEST/bin/Debug/NEATEST.exe.config [new file with mode: 0644]
NEATEST/bin/Debug/NEATEST.pdb [new file with mode: 0644]
NEATEST/bin/Debug/NEATEST.xml [new file with mode: 0644]
NEATEST/obj/Debug/Application.g.i.vb [new file with mode: 0644]
NEATEST/obj/Debug/Application.g.vb [new file with mode: 0644]
NEATEST/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache [new file with mode: 0644]
NEATEST/obj/Debug/MainWindow.baml [new file with mode: 0644]
NEATEST/obj/Debug/MainWindow.g.i.vb [new file with mode: 0644]
NEATEST/obj/Debug/MainWindow.g.vb [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST.Resources.resources [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST.exe [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST.g.resources [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST.pdb [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST.vbproj.CoreCompileInputs.cache [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST.vbproj.FileListAbsolute.txt [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST.vbproj.GenerateResource.cache [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST.vbprojAssemblyReference.cache [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST.xml [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST_MarkupCompile.cache [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST_MarkupCompile.i.cache [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST_MarkupCompile.i.lref [new file with mode: 0644]
NEATEST/obj/Debug/NEATEST_MarkupCompile.lref [new file with mode: 0644]

diff --git a/NEATEST.sln b/NEATEST.sln
new file mode 100644 (file)
index 0000000..e719edc
--- /dev/null
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+VisualStudioVersion = 15.0.28307.902
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "NEATEST", "NEATEST\NEATEST.vbproj", "{0221DF71-BDFD-4097-B5B8-E7C3DA749B73}"
+EndProject
+Global
+       GlobalSection(SolutionConfigurationPlatforms) = preSolution
+               Debug|Any CPU = Debug|Any CPU
+               Release|Any CPU = Release|Any CPU
+       EndGlobalSection
+       GlobalSection(ProjectConfigurationPlatforms) = postSolution
+               {0221DF71-BDFD-4097-B5B8-E7C3DA749B73}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+               {0221DF71-BDFD-4097-B5B8-E7C3DA749B73}.Debug|Any CPU.Build.0 = Debug|Any CPU
+               {0221DF71-BDFD-4097-B5B8-E7C3DA749B73}.Release|Any CPU.ActiveCfg = Release|Any CPU
+               {0221DF71-BDFD-4097-B5B8-E7C3DA749B73}.Release|Any CPU.Build.0 = Release|Any CPU
+       EndGlobalSection
+       GlobalSection(SolutionProperties) = preSolution
+               HideSolutionNode = FALSE
+       EndGlobalSection
+       GlobalSection(ExtensibilityGlobals) = postSolution
+               SolutionGuid = {6D94EBFE-EBE0-4F93-8D22-2E831BDF7FCE}
+       EndGlobalSection
+EndGlobal
diff --git a/NEATEST/App.config b/NEATEST/App.config
new file mode 100644 (file)
index 0000000..731f6de
--- /dev/null
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+    <startup> 
+        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
+    </startup>
+</configuration>
\ No newline at end of file
diff --git a/NEATEST/Application.xaml b/NEATEST/Application.xaml
new file mode 100644 (file)
index 0000000..4b6cf06
--- /dev/null
@@ -0,0 +1,9 @@
+<Application x:Class="Application"
+    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+    xmlns:local="clr-namespace:NEATEST"
+    StartupUri="MainWindow.xaml">
+    <Application.Resources>
+        
+    </Application.Resources>
+</Application>
diff --git a/NEATEST/Application.xaml.vb b/NEATEST/Application.xaml.vb
new file mode 100644 (file)
index 0000000..084cbe9
--- /dev/null
@@ -0,0 +1,6 @@
+Class Application
+
+    ' Application-level events, such as Startup, Exit, and DispatcherUnhandledException
+    ' can be handled in this file.
+
+End Class
diff --git a/NEATEST/MainWindow.xaml b/NEATEST/MainWindow.xaml
new file mode 100644 (file)
index 0000000..1bed06a
--- /dev/null
@@ -0,0 +1,35 @@
+<Window x:Class="MainWindow"
+        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:NEATEST"
+        mc:Ignorable="d"
+        Title="MainWindow" Height="450" Width="800">
+    <Grid Background="White" HorizontalAlignment="Right" VerticalAlignment="Top"  >
+        <TextBox Margin="-115,23,18,-23">
+            <TextBox.Style>
+                <Style TargetType="TextBox" xmlns:sys="clr-namespace:System;assembly=mscorlib">
+                    <Style.Resources>
+                        <VisualBrush x:Key="CueBannerBrush" AlignmentX="Left" AlignmentY="Center" Stretch="None">
+                            <VisualBrush.Visual>
+                                <Label Content="Search" Foreground="LightGray" />
+                            </VisualBrush.Visual>
+                        </VisualBrush>
+                    </Style.Resources>
+                    <Style.Triggers>
+                        <Trigger Property="Text" Value="{x:Static sys:String.Empty}">
+                            <Setter Property="Background" Value="{StaticResource CueBannerBrush}" />
+                        </Trigger>
+                        <Trigger Property="Text" Value="{x:Null}">
+                            <Setter Property="Background" Value="{StaticResource CueBannerBrush}" />
+                        </Trigger>
+                        <Trigger Property="IsKeyboardFocused" Value="True">
+                            <Setter Property="Background" Value="White" />
+                        </Trigger>
+                    </Style.Triggers>
+                </Style>
+            </TextBox.Style>
+        </TextBox>
+    </Grid>
+</Window>
diff --git a/NEATEST/MainWindow.xaml.vb b/NEATEST/MainWindow.xaml.vb
new file mode 100644 (file)
index 0000000..922a5de
--- /dev/null
@@ -0,0 +1,3 @@
+Class MainWindow
+
+End Class
diff --git a/NEATEST/My Project/AssemblyInfo.vb b/NEATEST/My Project/AssemblyInfo.vb
new file mode 100644 (file)
index 0000000..cd4ea1b
--- /dev/null
@@ -0,0 +1,59 @@
+Imports System
+Imports System.Reflection
+Imports System.Runtime.InteropServices
+Imports System.Globalization
+Imports System.Resources
+Imports 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.
+
+' Review the values of the assembly attributes
+
+<Assembly: AssemblyTitle("NEATEST")>
+<Assembly: AssemblyDescription("")>
+<Assembly: AssemblyCompany("")>
+<Assembly: AssemblyProduct("NEATEST")>
+<Assembly: AssemblyCopyright("Copyright ©  2020")>
+<Assembly: AssemblyTrademark("")>
+<Assembly: ComVisible(false)>
+
+'In order to begin building localizable applications, set
+'<UICulture>CultureYouAreCodingWith</UICulture> in your .vbproj file
+'inside a <PropertyGroup>.  For example, if you are using US english
+'in your source files, set the <UICulture> 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)>
+
+
+'The ThemeInfo attribute describes where any theme specific and generic resource dictionaries can be found.
+'1st parameter: where theme specific resource dictionaries are located
+'(used if a resource is not found in the page,
+' or application resource dictionaries)
+
+'2nd parameter: where the generic resource dictionary is located
+'(used if a resource is not found in the page,
+'app, and any theme specific resource dictionaries)
+<Assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)>
+
+
+
+'The following GUID is for the ID of the typelib if this project is exposed to COM
+<Assembly: Guid("072922b7-b395-4089-bbbe-fabfa08cda26")>
+
+' 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/NEATEST/My Project/MyExtensions/MyWpfExtension.vb b/NEATEST/My Project/MyExtensions/MyWpfExtension.vb
new file mode 100644 (file)
index 0000000..22f84b7
--- /dev/null
@@ -0,0 +1,121 @@
+#If _MyType <> "Empty" Then
+
+Namespace My
+    ''' <summary>
+    ''' Module used to define the properties that are available in the My Namespace for WPF
+    ''' </summary>
+    ''' <remarks></remarks>
+    <Global.Microsoft.VisualBasic.HideModuleName()> _
+    Module MyWpfExtension
+        Private s_Computer As New ThreadSafeObjectProvider(Of Global.Microsoft.VisualBasic.Devices.Computer)
+        Private s_User As New ThreadSafeObjectProvider(Of Global.Microsoft.VisualBasic.ApplicationServices.User)
+        Private s_Windows As New ThreadSafeObjectProvider(Of MyWindows)
+        Private s_Log As New ThreadSafeObjectProvider(Of Global.Microsoft.VisualBasic.Logging.Log)
+        ''' <summary>
+        ''' Returns the application object for the running application
+        ''' </summary>
+        <Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")>  _
+        Friend ReadOnly Property Application() As Application
+            Get
+                Return CType(Global.System.Windows.Application.Current, Application)
+            End Get
+        End Property
+        ''' <summary>
+        ''' Returns information about the host computer.
+        ''' </summary>
+        <Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")>  _
+        Friend ReadOnly Property Computer() As Global.Microsoft.VisualBasic.Devices.Computer
+            Get
+                Return s_Computer.GetInstance()
+            End Get
+        End Property
+        ''' <summary>
+        ''' Returns information for the current user.  If you wish to run the application with the current 
+        ''' Windows user credentials, call My.User.InitializeWithWindowsUser().
+        ''' </summary>
+        <Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")>  _
+        Friend ReadOnly Property User() As Global.Microsoft.VisualBasic.ApplicationServices.User
+            Get
+                Return s_User.GetInstance()
+            End Get
+        End Property
+        ''' <summary>
+        ''' Returns the application log. The listeners can be configured by the application's configuration file.
+        ''' </summary>
+        <Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")>  _
+        Friend ReadOnly Property Log() As Global.Microsoft.VisualBasic.Logging.Log
+            Get
+                Return s_Log.GetInstance()
+            End Get
+        End Property
+
+        ''' <summary>
+        ''' Returns the collection of Windows defined in the project.
+        ''' </summary>
+        <Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")>  _
+        Friend ReadOnly Property Windows() As MyWindows
+            <Global.System.Diagnostics.DebuggerHidden()> _
+            Get
+                Return s_Windows.GetInstance()
+            End Get
+        End Property
+        <Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Never)> _
+        <Global.Microsoft.VisualBasic.MyGroupCollection("System.Windows.Window", "Create__Instance__", "Dispose__Instance__", "My.MyWpfExtenstionModule.Windows")> _
+        Friend NotInheritable Class MyWindows
+            <Global.System.Diagnostics.DebuggerHidden()> _
+            Private Shared Function Create__Instance__(Of T As {New, Global.System.Windows.Window})(ByVal Instance As T) As T
+                If Instance Is Nothing Then
+                    If s_WindowBeingCreated IsNot Nothing Then
+                        If s_WindowBeingCreated.ContainsKey(GetType(T)) = True Then
+                            Throw New Global.System.InvalidOperationException("The window cannot be accessed via My.Windows from the Window constructor.")
+                        End If
+                    Else
+                        s_WindowBeingCreated = New Global.System.Collections.Hashtable()
+                    End If
+                    s_WindowBeingCreated.Add(GetType(T), Nothing)
+                    Return New T()
+                    s_WindowBeingCreated.Remove(GetType(T))
+                Else
+                    Return Instance
+                End If
+            End Function
+            <Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1822:MarkMembersAsStatic")>  _
+            <Global.System.Diagnostics.DebuggerHidden()> _
+            Private Sub Dispose__Instance__(Of T As Global.System.Windows.Window)(ByRef instance As T)
+                instance = Nothing
+            End Sub
+            <Global.System.Diagnostics.DebuggerHidden()> _
+            <Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Never)> _
+            Public Sub New()
+                MyBase.New()
+            End Sub
+            <Global.System.ThreadStatic()> Private Shared s_WindowBeingCreated As Global.System.Collections.Hashtable
+            <Global.System.ComponentModel.EditorBrowsable(Global.System.ComponentModel.EditorBrowsableState.Never)> Public Overrides Function Equals(ByVal o As Object) As Boolean
+                Return MyBase.Equals(o)
+            End Function
+            <Global.System.ComponentModel.EditorBrowsable(Global.System.ComponentModel.EditorBrowsableState.Never)> Public Overrides Function GetHashCode() As Integer
+                Return MyBase.GetHashCode
+            End Function
+            <Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1822:MarkMembersAsStatic")>  _
+            <Global.System.ComponentModel.EditorBrowsable(Global.System.ComponentModel.EditorBrowsableState.Never)> _
+            Friend Overloads Function [GetType]() As Global.System.Type
+                Return GetType(MyWindows)
+            End Function
+            <Global.System.ComponentModel.EditorBrowsable(Global.System.ComponentModel.EditorBrowsableState.Never)> Public Overrides Function ToString() As String
+                Return MyBase.ToString
+            End Function
+        End Class
+    End Module
+End Namespace
+Partial Class Application
+    Inherits Global.System.Windows.Application
+    <Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")> _
+    <Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1822:MarkMembersAsStatic")> _
+    Friend ReadOnly Property Info() As Global.Microsoft.VisualBasic.ApplicationServices.AssemblyInfo
+        <Global.System.Diagnostics.DebuggerHidden()> _
+        Get
+            Return New Global.Microsoft.VisualBasic.ApplicationServices.AssemblyInfo(Global.System.Reflection.Assembly.GetExecutingAssembly())
+        End Get
+    End Property
+End Class
+#End If
\ No newline at end of file
diff --git a/NEATEST/My Project/Resources.Designer.vb b/NEATEST/My Project/Resources.Designer.vb
new file mode 100644 (file)
index 0000000..e7ecddc
--- /dev/null
@@ -0,0 +1,62 @@
+'------------------------------------------------------------------------------
+' <auto-generated>
+'     This code was generated by a tool.
+'     Runtime Version:$clrversion$
+'
+'     Changes to this file may cause incorrect behavior and will be lost if
+'     the code is regenerated.
+' </auto-generated>
+'------------------------------------------------------------------------------
+
+Option Strict On
+Option Explicit On
+
+
+Namespace My.Resources
+
+    '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.
+    '''<summary>
+    '''  A strongly-typed resource class, for looking up localized strings, etc.
+    '''</summary>
+    <Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _
+     Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
+     Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
+     Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
+    Friend Module Resources
+
+        Private resourceMan As Global.System.Resources.ResourceManager
+
+        Private resourceCulture As Global.System.Globalization.CultureInfo
+
+        '''<summary>
+        '''  Returns the cached ResourceManager instance used by this class.
+        '''</summary>
+        <Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
+        Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
+            Get
+                If Object.ReferenceEquals(resourceMan, Nothing) Then
+                    Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("$safeprojectname$.Resources", GetType(Resources).Assembly)
+                    resourceMan = temp
+                End If
+                Return resourceMan
+            End Get
+        End Property
+
+        '''<summary>
+        '''  Overrides the current thread's CurrentUICulture property for all
+        '''  resource lookups using this strongly typed resource class.
+        '''</summary>
+        <Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
+        Friend Property Culture() As Global.System.Globalization.CultureInfo
+            Get
+                Return resourceCulture
+            End Get
+            Set(ByVal value As Global.System.Globalization.CultureInfo)
+                resourceCulture = value
+            End Set
+        End Property
+    End Module
+End Namespace
diff --git a/NEATEST/My Project/Resources.resx b/NEATEST/My Project/Resources.resx
new file mode 100644 (file)
index 0000000..af7dbeb
--- /dev/null
@@ -0,0 +1,117 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+</root>
\ No newline at end of file
diff --git a/NEATEST/My Project/Settings.Designer.vb b/NEATEST/My Project/Settings.Designer.vb
new file mode 100644 (file)
index 0000000..fd9f31f
--- /dev/null
@@ -0,0 +1,73 @@
+'------------------------------------------------------------------------------
+' <auto-generated>
+'     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.
+' </auto-generated>
+'------------------------------------------------------------------------------
+
+Option Strict On
+Option Explicit On
+
+
+Namespace My
+
+    <Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
+     Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _
+     Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
+    Partial Friend NotInheritable Class MySettings
+        Inherits Global.System.Configuration.ApplicationSettingsBase
+
+        Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings)
+
+#Region "My.Settings Auto-Save Functionality"
+#If _MyType = "WindowsForms" Then
+        Private Shared addedHandler As Boolean
+
+        Private Shared addedHandlerLockObject As New Object
+
+        <Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
+        Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
+            If My.Application.SaveMySettingsOnExit Then
+                My.Settings.Save()
+            End If
+        End Sub
+#End If
+#End Region
+
+        Public Shared ReadOnly Property [Default]() As MySettings
+            Get
+
+#If _MyType = "WindowsForms" Then
+                   If Not addedHandler Then
+                        SyncLock addedHandlerLockObject
+                            If Not addedHandler Then
+                                AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
+                                addedHandler = True
+                            End If
+                        End SyncLock
+                    End If
+#End If
+                Return defaultInstance
+            End Get
+        End Property
+    End Class
+End Namespace
+
+Namespace My
+
+    <Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
+     Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
+     Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
+    Friend Module MySettingsProperty
+
+        <Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
+        Friend ReadOnly Property Settings() As Global.NEATEST.My.MySettings
+            Get
+                Return Global.NEATEST.My.MySettings.Default
+            End Get
+        End Property
+    End Module
+End Namespace
diff --git a/NEATEST/My Project/Settings.settings b/NEATEST/My Project/Settings.settings
new file mode 100644 (file)
index 0000000..40ed9fd
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version='1.0' encoding='utf-8'?>
+<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" UseMySettingsClassName="true">
+  <Profiles>
+    <Profile Name="(Default)" />
+  </Profiles>
+  <Settings />
+</SettingsFile>
\ No newline at end of file
diff --git a/NEATEST/NEATEST.vbproj b/NEATEST/NEATEST.vbproj
new file mode 100644 (file)
index 0000000..4969986
--- /dev/null
@@ -0,0 +1,135 @@
+<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProjectGuid>{0221DF71-BDFD-4097-B5B8-E7C3DA749B73}</ProjectGuid>
+    <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids>
+    <OutputType>WinExe</OutputType>
+    <RootNamespace>NEATEST</RootNamespace>
+    <AssemblyName>NEATEST</AssemblyName>
+    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
+    <MyType>Custom</MyType>
+    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
+    <Deterministic>true</Deterministic>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <DefineDebug>true</DefineDebug>
+    <DefineTrace>true</DefineTrace>
+    <IncrementalBuild>true</IncrementalBuild>
+    <OutputPath>bin\Debug\</OutputPath>
+    <DocumentationFile>NEATEST.xml</DocumentationFile>
+    <NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugType>pdbonly</DebugType>
+    <DebugSymbols>false</DebugSymbols>
+    <DefineDebug>false</DefineDebug>
+    <DefineTrace>true</DefineTrace>
+    <IncrementalBuild>false</IncrementalBuild>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release\</OutputPath>
+    <DocumentationFile>NEATEST.xml</DocumentationFile>
+    <NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
+  </PropertyGroup>
+  <PropertyGroup>
+    <OptionExplicit>On</OptionExplicit>
+  </PropertyGroup>
+  <PropertyGroup>
+    <OptionCompare>Binary</OptionCompare>
+  </PropertyGroup>
+  <PropertyGroup>
+    <OptionStrict>Off</OptionStrict>
+  </PropertyGroup>
+  <PropertyGroup>
+    <OptionInfer>On</OptionInfer>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="System.Core" />
+    <Reference Include="System.Xml.Linq" />
+    <Reference Include="System.Data.DataSetExtensions" />
+    <Reference Include="System" />
+    <Reference Include="System.Data" />
+    <Reference Include="System.Xml" />
+    <Reference Include="System.Xaml">
+      <RequiredTargetFramework>4.0</RequiredTargetFramework>
+    </Reference>
+    <Reference Include="WindowsBase" />
+    <Reference Include="PresentationCore" />
+    <Reference Include="PresentationFramework" />
+    <Reference Include="System.Net.Http" />
+  </ItemGroup>
+  <ItemGroup>
+    <ApplicationDefinition Include="Application.xaml">
+      <Generator>MSBuild:Compile</Generator>
+      <SubType>Designer</SubType>
+    </ApplicationDefinition>
+    <Page Include="MainWindow.xaml">
+      <Generator>MSBuild:Compile</Generator>
+      <SubType>Designer</SubType>
+    </Page>
+    <Compile Include="Application.xaml.vb">
+      <DependentUpon>Application.xaml</DependentUpon>
+      <SubType>Code</SubType>
+    </Compile>
+    <Compile Include="MainWindow.xaml.vb">
+      <DependentUpon>MainWindow.xaml</DependentUpon>
+      <SubType>Code</SubType>
+    </Compile>
+  </ItemGroup>
+  <ItemGroup>
+    <Import Include="System.Threading.Tasks" />
+    <Import Include="System.Linq" />
+    <Import Include="System.Xml.Linq" />
+    <Import Include="Microsoft.VisualBasic" />
+    <Import Include="System" />
+    <Import Include="System.Collections" />
+    <Import Include="System.Collections.Generic" />
+    <Import Include="System.Diagnostics" />
+    <Import Include="System.Windows" />
+    <Import Include="System.Windows.Controls" />
+    <Import Include="System.Windows.Data" />
+    <Import Include="System.Windows.Documents" />
+    <Import Include="System.Windows.Input" />
+    <Import Include="System.Windows.Shapes" />
+    <Import Include="System.Windows.Media" />
+    <Import Include="System.Windows.Media.Imaging" />
+    <Import Include="System.Windows.Navigation" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="My Project\AssemblyInfo.vb">
+      <SubType>Code</SubType>
+    </Compile>
+    <Compile Include="My Project\MyExtensions\MyWpfExtension.vb">
+      <VBMyExtensionTemplateID>Microsoft.VisualBasic.WPF.MyExtension</VBMyExtensionTemplateID>
+      <VBMyExtensionTemplateVersion>1.0.0.0</VBMyExtensionTemplateVersion>
+    </Compile>
+    <Compile Include="My Project\Resources.Designer.vb">
+      <AutoGen>True</AutoGen>
+      <DesignTime>True</DesignTime>
+      <DependentUpon>Resources.resx</DependentUpon>
+    </Compile>
+    <Compile Include="My Project\Settings.Designer.vb">
+      <AutoGen>True</AutoGen>
+      <DependentUpon>Settings.settings</DependentUpon>
+      <DesignTimeSharedInput>True</DesignTimeSharedInput>
+    </Compile>
+    <EmbeddedResource Include="My Project\Resources.resx">
+      <Generator>VbMyResourcesResXFileCodeGenerator</Generator>
+      <LastGenOutput>Resources.Designer.vb</LastGenOutput>
+      <CustomToolNamespace>My.Resources</CustomToolNamespace>
+    </EmbeddedResource>
+    <None Include="My Project\Settings.settings">
+      <Generator>SettingsSingleFileGenerator</Generator>
+      <LastGenOutput>Settings.Designer.vb</LastGenOutput>
+    </None>
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="App.config" />
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
+</Project>
\ No newline at end of file
diff --git a/NEATEST/bin/Debug/NEATEST.exe b/NEATEST/bin/Debug/NEATEST.exe
new file mode 100644 (file)
index 0000000..4c27d39
Binary files /dev/null and b/NEATEST/bin/Debug/NEATEST.exe differ
diff --git a/NEATEST/bin/Debug/NEATEST.exe.config b/NEATEST/bin/Debug/NEATEST.exe.config
new file mode 100644 (file)
index 0000000..731f6de
--- /dev/null
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+    <startup> 
+        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
+    </startup>
+</configuration>
\ No newline at end of file
diff --git a/NEATEST/bin/Debug/NEATEST.pdb b/NEATEST/bin/Debug/NEATEST.pdb
new file mode 100644 (file)
index 0000000..2b87967
Binary files /dev/null and b/NEATEST/bin/Debug/NEATEST.pdb differ
diff --git a/NEATEST/bin/Debug/NEATEST.xml b/NEATEST/bin/Debug/NEATEST.xml
new file mode 100644 (file)
index 0000000..b10d07c
--- /dev/null
@@ -0,0 +1,83 @@
+<?xml version="1.0"?>
+<doc>
+<assembly>
+<name>
+NEATEST
+</name>
+</assembly>
+<members>
+<member name="T:NEATEST.My.MyWpfExtension">
+ <summary>
+ Module used to define the properties that are available in the My Namespace for WPF
+ </summary>
+ <remarks></remarks>
+</member>
+<member name="P:NEATEST.My.MyWpfExtension.Application">
+ <summary>
+ Returns the application object for the running application
+ </summary>
+</member>
+<member name="P:NEATEST.My.MyWpfExtension.Computer">
+ <summary>
+ Returns information about the host computer.
+ </summary>
+</member>
+<member name="P:NEATEST.My.MyWpfExtension.User">
+ <summary>
+ Returns information for the current user.  If you wish to run the application with the current 
+ Windows user credentials, call My.User.InitializeWithWindowsUser().
+ </summary>
+</member>
+<member name="P:NEATEST.My.MyWpfExtension.Log">
+ <summary>
+ Returns the application log. The listeners can be configured by the application's configuration file.
+ </summary>
+</member>
+<member name="P:NEATEST.My.MyWpfExtension.Windows">
+ <summary>
+ Returns the collection of Windows defined in the project.
+ </summary>
+</member>
+<member name="T:NEATEST.My.Resources.Resources">
+<summary>
+  A strongly-typed resource class, for looking up localized strings, etc.
+</summary>
+</member>
+<member name="P:NEATEST.My.Resources.Resources.ResourceManager">
+<summary>
+  Returns the cached ResourceManager instance used by this class.
+</summary>
+</member>
+<member name="P:NEATEST.My.Resources.Resources.Culture">
+<summary>
+  Overrides the current thread's CurrentUICulture property for all
+  resource lookups using this strongly typed resource class.
+</summary>
+</member>
+<member name="T:NEATEST.Application">
+<summary>
+Application
+</summary>
+</member>
+<member name="M:NEATEST.Application.InitializeComponent">
+<summary>
+InitializeComponent
+</summary>
+</member>
+<member name="M:NEATEST.Application.Main">
+<summary>
+Application Entry Point.
+</summary>
+</member>
+<member name="T:NEATEST.MainWindow">
+<summary>
+MainWindow
+</summary>
+</member>
+<member name="M:NEATEST.MainWindow.InitializeComponent">
+<summary>
+InitializeComponent
+</summary>
+</member>
+</members>
+</doc>
diff --git a/NEATEST/obj/Debug/Application.g.i.vb b/NEATEST/obj/Debug/Application.g.i.vb
new file mode 100644 (file)
index 0000000..b59ee2a
--- /dev/null
@@ -0,0 +1,69 @@
+#ExternalChecksum("..\..\Application.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","38E64E5AB5A63056F51CEADEA78C4527E6306590")
+'------------------------------------------------------------------------------
+' <auto-generated>
+'     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.
+' </auto-generated>
+'------------------------------------------------------------------------------
+
+Option Strict Off
+Option Explicit On
+
+Imports NEATEST
+Imports System
+Imports System.Diagnostics
+Imports System.Windows
+Imports System.Windows.Automation
+Imports System.Windows.Controls
+Imports System.Windows.Controls.Primitives
+Imports System.Windows.Data
+Imports System.Windows.Documents
+Imports System.Windows.Ink
+Imports System.Windows.Input
+Imports System.Windows.Markup
+Imports System.Windows.Media
+Imports System.Windows.Media.Animation
+Imports System.Windows.Media.Effects
+Imports System.Windows.Media.Imaging
+Imports System.Windows.Media.Media3D
+Imports System.Windows.Media.TextFormatting
+Imports System.Windows.Navigation
+Imports System.Windows.Shapes
+Imports System.Windows.Shell
+
+
+'''<summary>
+'''Application
+'''</summary>
+Partial Public Class Application
+    Inherits System.Windows.Application
+    
+    '''<summary>
+    '''InitializeComponent
+    '''</summary>
+    <System.Diagnostics.DebuggerNonUserCodeAttribute(),  _
+     System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")>  _
+    Public Sub InitializeComponent()
+        
+        #ExternalSource("..\..\Application.xaml",5)
+        Me.StartupUri = New System.Uri("MainWindow.xaml", System.UriKind.Relative)
+        
+        #End ExternalSource
+    End Sub
+    
+    '''<summary>
+    '''Application Entry Point.
+    '''</summary>
+    <System.STAThreadAttribute(),  _
+     System.Diagnostics.DebuggerNonUserCodeAttribute(),  _
+     System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")>  _
+    Public Shared Sub Main()
+        Dim app As Application = New Application()
+        app.InitializeComponent
+        app.Run
+    End Sub
+End Class
+
diff --git a/NEATEST/obj/Debug/Application.g.vb b/NEATEST/obj/Debug/Application.g.vb
new file mode 100644 (file)
index 0000000..b59ee2a
--- /dev/null
@@ -0,0 +1,69 @@
+#ExternalChecksum("..\..\Application.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","38E64E5AB5A63056F51CEADEA78C4527E6306590")
+'------------------------------------------------------------------------------
+' <auto-generated>
+'     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.
+' </auto-generated>
+'------------------------------------------------------------------------------
+
+Option Strict Off
+Option Explicit On
+
+Imports NEATEST
+Imports System
+Imports System.Diagnostics
+Imports System.Windows
+Imports System.Windows.Automation
+Imports System.Windows.Controls
+Imports System.Windows.Controls.Primitives
+Imports System.Windows.Data
+Imports System.Windows.Documents
+Imports System.Windows.Ink
+Imports System.Windows.Input
+Imports System.Windows.Markup
+Imports System.Windows.Media
+Imports System.Windows.Media.Animation
+Imports System.Windows.Media.Effects
+Imports System.Windows.Media.Imaging
+Imports System.Windows.Media.Media3D
+Imports System.Windows.Media.TextFormatting
+Imports System.Windows.Navigation
+Imports System.Windows.Shapes
+Imports System.Windows.Shell
+
+
+'''<summary>
+'''Application
+'''</summary>
+Partial Public Class Application
+    Inherits System.Windows.Application
+    
+    '''<summary>
+    '''InitializeComponent
+    '''</summary>
+    <System.Diagnostics.DebuggerNonUserCodeAttribute(),  _
+     System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")>  _
+    Public Sub InitializeComponent()
+        
+        #ExternalSource("..\..\Application.xaml",5)
+        Me.StartupUri = New System.Uri("MainWindow.xaml", System.UriKind.Relative)
+        
+        #End ExternalSource
+    End Sub
+    
+    '''<summary>
+    '''Application Entry Point.
+    '''</summary>
+    <System.STAThreadAttribute(),  _
+     System.Diagnostics.DebuggerNonUserCodeAttribute(),  _
+     System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")>  _
+    Public Shared Sub Main()
+        Dim app As Application = New Application()
+        app.InitializeComponent
+        app.Run
+    End Sub
+End Class
+
diff --git a/NEATEST/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/NEATEST/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644 (file)
index 0000000..3f67198
Binary files /dev/null and b/NEATEST/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/NEATEST/obj/Debug/MainWindow.baml b/NEATEST/obj/Debug/MainWindow.baml
new file mode 100644 (file)
index 0000000..9397daf
Binary files /dev/null and b/NEATEST/obj/Debug/MainWindow.baml differ
diff --git a/NEATEST/obj/Debug/MainWindow.g.i.vb b/NEATEST/obj/Debug/MainWindow.g.i.vb
new file mode 100644 (file)
index 0000000..616a4b2
--- /dev/null
@@ -0,0 +1,76 @@
+#ExternalChecksum("..\..\MainWindow.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","0DFA720BD1EA524CD1EDE347D4098CBBB9B24227")
+'------------------------------------------------------------------------------
+' <auto-generated>
+'     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.
+' </auto-generated>
+'------------------------------------------------------------------------------
+
+Option Strict Off
+Option Explicit On
+
+Imports NEATEST
+Imports System
+Imports System.Diagnostics
+Imports System.Windows
+Imports System.Windows.Automation
+Imports System.Windows.Controls
+Imports System.Windows.Controls.Primitives
+Imports System.Windows.Data
+Imports System.Windows.Documents
+Imports System.Windows.Ink
+Imports System.Windows.Input
+Imports System.Windows.Markup
+Imports System.Windows.Media
+Imports System.Windows.Media.Animation
+Imports System.Windows.Media.Effects
+Imports System.Windows.Media.Imaging
+Imports System.Windows.Media.Media3D
+Imports System.Windows.Media.TextFormatting
+Imports System.Windows.Navigation
+Imports System.Windows.Shapes
+Imports System.Windows.Shell
+
+
+'''<summary>
+'''MainWindow
+'''</summary>
+<Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>  _
+Partial Public Class MainWindow
+    Inherits System.Windows.Window
+    Implements System.Windows.Markup.IComponentConnector
+    
+    Private _contentLoaded As Boolean
+    
+    '''<summary>
+    '''InitializeComponent
+    '''</summary>
+    <System.Diagnostics.DebuggerNonUserCodeAttribute(),  _
+     System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")>  _
+    Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent
+        If _contentLoaded Then
+            Return
+        End If
+        _contentLoaded = true
+        Dim resourceLocater As System.Uri = New System.Uri("/NEATEST;component/mainwindow.xaml", System.UriKind.Relative)
+        
+        #ExternalSource("..\..\MainWindow.xaml",1)
+        System.Windows.Application.LoadComponent(Me, resourceLocater)
+        
+        #End ExternalSource
+    End Sub
+    
+    <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")>  _
+    Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect
+        Me._contentLoaded = true
+    End Sub
+End Class
+
diff --git a/NEATEST/obj/Debug/MainWindow.g.vb b/NEATEST/obj/Debug/MainWindow.g.vb
new file mode 100644 (file)
index 0000000..616a4b2
--- /dev/null
@@ -0,0 +1,76 @@
+#ExternalChecksum("..\..\MainWindow.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","0DFA720BD1EA524CD1EDE347D4098CBBB9B24227")
+'------------------------------------------------------------------------------
+' <auto-generated>
+'     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.
+' </auto-generated>
+'------------------------------------------------------------------------------
+
+Option Strict Off
+Option Explicit On
+
+Imports NEATEST
+Imports System
+Imports System.Diagnostics
+Imports System.Windows
+Imports System.Windows.Automation
+Imports System.Windows.Controls
+Imports System.Windows.Controls.Primitives
+Imports System.Windows.Data
+Imports System.Windows.Documents
+Imports System.Windows.Ink
+Imports System.Windows.Input
+Imports System.Windows.Markup
+Imports System.Windows.Media
+Imports System.Windows.Media.Animation
+Imports System.Windows.Media.Effects
+Imports System.Windows.Media.Imaging
+Imports System.Windows.Media.Media3D
+Imports System.Windows.Media.TextFormatting
+Imports System.Windows.Navigation
+Imports System.Windows.Shapes
+Imports System.Windows.Shell
+
+
+'''<summary>
+'''MainWindow
+'''</summary>
+<Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>  _
+Partial Public Class MainWindow
+    Inherits System.Windows.Window
+    Implements System.Windows.Markup.IComponentConnector
+    
+    Private _contentLoaded As Boolean
+    
+    '''<summary>
+    '''InitializeComponent
+    '''</summary>
+    <System.Diagnostics.DebuggerNonUserCodeAttribute(),  _
+     System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")>  _
+    Public Sub InitializeComponent() Implements System.Windows.Markup.IComponentConnector.InitializeComponent
+        If _contentLoaded Then
+            Return
+        End If
+        _contentLoaded = true
+        Dim resourceLocater As System.Uri = New System.Uri("/NEATEST;component/mainwindow.xaml", System.UriKind.Relative)
+        
+        #ExternalSource("..\..\MainWindow.xaml",1)
+        System.Windows.Application.LoadComponent(Me, resourceLocater)
+        
+        #End ExternalSource
+    End Sub
+    
+    <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")>  _
+    Sub System_Windows_Markup_IComponentConnector_Connect(ByVal connectionId As Integer, ByVal target As Object) Implements System.Windows.Markup.IComponentConnector.Connect
+        Me._contentLoaded = true
+    End Sub
+End Class
+
diff --git a/NEATEST/obj/Debug/NEATEST.Resources.resources b/NEATEST/obj/Debug/NEATEST.Resources.resources
new file mode 100644 (file)
index 0000000..6c05a97
Binary files /dev/null and b/NEATEST/obj/Debug/NEATEST.Resources.resources differ
diff --git a/NEATEST/obj/Debug/NEATEST.exe b/NEATEST/obj/Debug/NEATEST.exe
new file mode 100644 (file)
index 0000000..4c27d39
Binary files /dev/null and b/NEATEST/obj/Debug/NEATEST.exe differ
diff --git a/NEATEST/obj/Debug/NEATEST.g.resources b/NEATEST/obj/Debug/NEATEST.g.resources
new file mode 100644 (file)
index 0000000..34b4f46
Binary files /dev/null and b/NEATEST/obj/Debug/NEATEST.g.resources differ
diff --git a/NEATEST/obj/Debug/NEATEST.pdb b/NEATEST/obj/Debug/NEATEST.pdb
new file mode 100644 (file)
index 0000000..2b87967
Binary files /dev/null and b/NEATEST/obj/Debug/NEATEST.pdb differ
diff --git a/NEATEST/obj/Debug/NEATEST.vbproj.CoreCompileInputs.cache b/NEATEST/obj/Debug/NEATEST.vbproj.CoreCompileInputs.cache
new file mode 100644 (file)
index 0000000..f6ce7e6
--- /dev/null
@@ -0,0 +1 @@
+3316d1965de7dcf4866a4fbb2e332cf379f9dad5
diff --git a/NEATEST/obj/Debug/NEATEST.vbproj.FileListAbsolute.txt b/NEATEST/obj/Debug/NEATEST.vbproj.FileListAbsolute.txt
new file mode 100644 (file)
index 0000000..bf6f3cf
--- /dev/null
@@ -0,0 +1,17 @@
+E:\Visual Studio\NEATEST\NEATEST\bin\Debug\NEATEST.exe.config
+E:\Visual Studio\NEATEST\NEATEST\bin\Debug\NEATEST.exe
+E:\Visual Studio\NEATEST\NEATEST\bin\Debug\NEATEST.pdb
+E:\Visual Studio\NEATEST\NEATEST\bin\Debug\NEATEST.xml
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\NEATEST.vbprojAssemblyReference.cache
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\MainWindow.g.vb
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\Application.g.vb
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\NEATEST_MarkupCompile.cache
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\NEATEST_MarkupCompile.lref
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\MainWindow.baml
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\NEATEST.g.resources
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\NEATEST.Resources.resources
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\NEATEST.vbproj.GenerateResource.cache
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\NEATEST.vbproj.CoreCompileInputs.cache
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\NEATEST.exe
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\NEATEST.xml
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\NEATEST.pdb
diff --git a/NEATEST/obj/Debug/NEATEST.vbproj.GenerateResource.cache b/NEATEST/obj/Debug/NEATEST.vbproj.GenerateResource.cache
new file mode 100644 (file)
index 0000000..dde090a
Binary files /dev/null and b/NEATEST/obj/Debug/NEATEST.vbproj.GenerateResource.cache differ
diff --git a/NEATEST/obj/Debug/NEATEST.vbprojAssemblyReference.cache b/NEATEST/obj/Debug/NEATEST.vbprojAssemblyReference.cache
new file mode 100644 (file)
index 0000000..73bca92
Binary files /dev/null and b/NEATEST/obj/Debug/NEATEST.vbprojAssemblyReference.cache differ
diff --git a/NEATEST/obj/Debug/NEATEST.xml b/NEATEST/obj/Debug/NEATEST.xml
new file mode 100644 (file)
index 0000000..b10d07c
--- /dev/null
@@ -0,0 +1,83 @@
+<?xml version="1.0"?>
+<doc>
+<assembly>
+<name>
+NEATEST
+</name>
+</assembly>
+<members>
+<member name="T:NEATEST.My.MyWpfExtension">
+ <summary>
+ Module used to define the properties that are available in the My Namespace for WPF
+ </summary>
+ <remarks></remarks>
+</member>
+<member name="P:NEATEST.My.MyWpfExtension.Application">
+ <summary>
+ Returns the application object for the running application
+ </summary>
+</member>
+<member name="P:NEATEST.My.MyWpfExtension.Computer">
+ <summary>
+ Returns information about the host computer.
+ </summary>
+</member>
+<member name="P:NEATEST.My.MyWpfExtension.User">
+ <summary>
+ Returns information for the current user.  If you wish to run the application with the current 
+ Windows user credentials, call My.User.InitializeWithWindowsUser().
+ </summary>
+</member>
+<member name="P:NEATEST.My.MyWpfExtension.Log">
+ <summary>
+ Returns the application log. The listeners can be configured by the application's configuration file.
+ </summary>
+</member>
+<member name="P:NEATEST.My.MyWpfExtension.Windows">
+ <summary>
+ Returns the collection of Windows defined in the project.
+ </summary>
+</member>
+<member name="T:NEATEST.My.Resources.Resources">
+<summary>
+  A strongly-typed resource class, for looking up localized strings, etc.
+</summary>
+</member>
+<member name="P:NEATEST.My.Resources.Resources.ResourceManager">
+<summary>
+  Returns the cached ResourceManager instance used by this class.
+</summary>
+</member>
+<member name="P:NEATEST.My.Resources.Resources.Culture">
+<summary>
+  Overrides the current thread's CurrentUICulture property for all
+  resource lookups using this strongly typed resource class.
+</summary>
+</member>
+<member name="T:NEATEST.Application">
+<summary>
+Application
+</summary>
+</member>
+<member name="M:NEATEST.Application.InitializeComponent">
+<summary>
+InitializeComponent
+</summary>
+</member>
+<member name="M:NEATEST.Application.Main">
+<summary>
+Application Entry Point.
+</summary>
+</member>
+<member name="T:NEATEST.MainWindow">
+<summary>
+MainWindow
+</summary>
+</member>
+<member name="M:NEATEST.MainWindow.InitializeComponent">
+<summary>
+InitializeComponent
+</summary>
+</member>
+</members>
+</doc>
diff --git a/NEATEST/obj/Debug/NEATEST_MarkupCompile.cache b/NEATEST/obj/Debug/NEATEST_MarkupCompile.cache
new file mode 100644 (file)
index 0000000..7171b39
--- /dev/null
@@ -0,0 +1,20 @@
+NEATEST
+
+
+winexe
+VB
+.vb
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\
+NEATEST
+none
+false
+
+E:\Visual Studio\NEATEST\NEATEST\Application.xaml
+11151548125
+
+6-722535863
+11-1225924000
+MainWindow.xaml;
+
+False
+
diff --git a/NEATEST/obj/Debug/NEATEST_MarkupCompile.i.cache b/NEATEST/obj/Debug/NEATEST_MarkupCompile.i.cache
new file mode 100644 (file)
index 0000000..be7c26c
--- /dev/null
@@ -0,0 +1,20 @@
+NEATEST
+
+
+winexe
+VB
+.vb
+E:\Visual Studio\NEATEST\NEATEST\obj\Debug\
+NEATEST
+none
+false
+
+E:\Visual Studio\NEATEST\NEATEST\Application.xaml
+11151548125
+
+7-1879251328
+11-1225924000
+MainWindow.xaml;
+
+True
+
diff --git a/NEATEST/obj/Debug/NEATEST_MarkupCompile.i.lref b/NEATEST/obj/Debug/NEATEST_MarkupCompile.i.lref
new file mode 100644 (file)
index 0000000..4bf1d88
--- /dev/null
@@ -0,0 +1,4 @@
+
+
+FE:\Visual Studio\NEATEST\NEATEST\MainWindow.xaml;;
+
diff --git a/NEATEST/obj/Debug/NEATEST_MarkupCompile.lref b/NEATEST/obj/Debug/NEATEST_MarkupCompile.lref
new file mode 100644 (file)
index 0000000..4bf1d88
--- /dev/null
@@ -0,0 +1,4 @@
+
+
+FE:\Visual Studio\NEATEST\NEATEST\MainWindow.xaml;;
+