From: gareth Date: Sun, 10 May 2020 15:56:07 +0000 (+0100) Subject: 1st commit X-Git-Url: https://fbox.kageds.com/gitweb/NEATEST.git/commitdiff_plain/30324ba8f360a3a58050fdc4b7b8ab924ffe34e3?ds=sidebyside 1st commit --- diff --git a/NEATEST.sln b/NEATEST.sln new file mode 100644 index 0000000..e719edc --- /dev/null +++ b/NEATEST.sln @@ -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 index 0000000..731f6de --- /dev/null +++ b/NEATEST/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/NEATEST/Application.xaml b/NEATEST/Application.xaml new file mode 100644 index 0000000..4b6cf06 --- /dev/null +++ b/NEATEST/Application.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/NEATEST/Application.xaml.vb b/NEATEST/Application.xaml.vb new file mode 100644 index 0000000..084cbe9 --- /dev/null +++ b/NEATEST/Application.xaml.vb @@ -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 index 0000000..1bed06a --- /dev/null +++ b/NEATEST/MainWindow.xaml @@ -0,0 +1,35 @@ + + + + + + + + + diff --git a/NEATEST/MainWindow.xaml.vb b/NEATEST/MainWindow.xaml.vb new file mode 100644 index 0000000..922a5de --- /dev/null +++ b/NEATEST/MainWindow.xaml.vb @@ -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 index 0000000..cd4ea1b --- /dev/null +++ b/NEATEST/My Project/AssemblyInfo.vb @@ -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 + + + + + + + + + +'In order to begin building localizable applications, set +'CultureYouAreCodingWith in your .vbproj 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. + +' + + +'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) + + + + +'The following GUID is for the ID of the typelib if this project is exposed to COM + + +' 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: +' + + + diff --git a/NEATEST/My Project/MyExtensions/MyWpfExtension.vb b/NEATEST/My Project/MyExtensions/MyWpfExtension.vb new file mode 100644 index 0000000..22f84b7 --- /dev/null +++ b/NEATEST/My Project/MyExtensions/MyWpfExtension.vb @@ -0,0 +1,121 @@ +#If _MyType <> "Empty" Then + +Namespace My + ''' + ''' Module used to define the properties that are available in the My Namespace for WPF + ''' + ''' + _ + 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) + ''' + ''' Returns the application object for the running application + ''' + _ + Friend ReadOnly Property Application() As Application + Get + Return CType(Global.System.Windows.Application.Current, Application) + End Get + End Property + ''' + ''' Returns information about the host computer. + ''' + _ + Friend ReadOnly Property Computer() As Global.Microsoft.VisualBasic.Devices.Computer + Get + Return s_Computer.GetInstance() + End Get + End Property + ''' + ''' Returns information for the current user. If you wish to run the application with the current + ''' Windows user credentials, call My.User.InitializeWithWindowsUser(). + ''' + _ + Friend ReadOnly Property User() As Global.Microsoft.VisualBasic.ApplicationServices.User + Get + Return s_User.GetInstance() + End Get + End Property + ''' + ''' Returns the application log. The listeners can be configured by the application's configuration file. + ''' + _ + Friend ReadOnly Property Log() As Global.Microsoft.VisualBasic.Logging.Log + Get + Return s_Log.GetInstance() + End Get + End Property + + ''' + ''' Returns the collection of Windows defined in the project. + ''' + _ + Friend ReadOnly Property Windows() As MyWindows + _ + Get + Return s_Windows.GetInstance() + End Get + End Property + _ + _ + Friend NotInheritable Class MyWindows + _ + 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 + _ + _ + Private Sub Dispose__Instance__(Of T As Global.System.Windows.Window)(ByRef instance As T) + instance = Nothing + End Sub + _ + _ + Public Sub New() + MyBase.New() + End Sub + Private Shared s_WindowBeingCreated As Global.System.Collections.Hashtable + Public Overrides Function Equals(ByVal o As Object) As Boolean + Return MyBase.Equals(o) + End Function + Public Overrides Function GetHashCode() As Integer + Return MyBase.GetHashCode + End Function + _ + _ + Friend Overloads Function [GetType]() As Global.System.Type + Return GetType(MyWindows) + End Function + 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 + _ + _ + Friend ReadOnly Property Info() As Global.Microsoft.VisualBasic.ApplicationServices.AssemblyInfo + _ + 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 index 0000000..e7ecddc --- /dev/null +++ b/NEATEST/My Project/Resources.Designer.vb @@ -0,0 +1,62 @@ +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +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. + ''' + ''' A strongly-typed resource class, for looking up localized strings, etc. + ''' + _ + Friend Module Resources + + Private resourceMan As Global.System.Resources.ResourceManager + + Private resourceCulture As Global.System.Globalization.CultureInfo + + ''' + ''' Returns the cached ResourceManager instance used by this class. + ''' + _ + 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 + + ''' + ''' Overrides the current thread's CurrentUICulture property for all + ''' resource lookups using this strongly typed resource class. + ''' + _ + 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 index 0000000..af7dbeb --- /dev/null +++ b/NEATEST/My Project/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/NEATEST/My Project/Settings.Designer.vb b/NEATEST/My Project/Settings.Designer.vb new file mode 100644 index 0000000..fd9f31f --- /dev/null +++ b/NEATEST/My Project/Settings.Designer.vb @@ -0,0 +1,73 @@ +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My + + _ + 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 + + _ + 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 + + _ + Friend Module MySettingsProperty + + _ + 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 index 0000000..40ed9fd --- /dev/null +++ b/NEATEST/My Project/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/NEATEST/NEATEST.vbproj b/NEATEST/NEATEST.vbproj new file mode 100644 index 0000000..4969986 --- /dev/null +++ b/NEATEST/NEATEST.vbproj @@ -0,0 +1,135 @@ + + + + Debug + AnyCPU + {0221DF71-BDFD-4097-B5B8-E7C3DA749B73} + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F} + WinExe + NEATEST + NEATEST + v4.6.1 + Custom + true + true + + + AnyCPU + true + full + true + true + true + bin\Debug\ + NEATEST.xml + 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314 + + + AnyCPU + pdbonly + false + false + true + false + true + bin\Release\ + NEATEST.xml + 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314 + + + On + + + Binary + + + Off + + + On + + + + + + + + + + 4.0 + + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + Application.xaml + Code + + + MainWindow.xaml + Code + + + + + + + + + + + + + + + + + + + + + + + + Code + + + Microsoft.VisualBasic.WPF.MyExtension + 1.0.0.0 + + + True + True + Resources.resx + + + True + Settings.settings + True + + + VbMyResourcesResXFileCodeGenerator + Resources.Designer.vb + My.Resources + + + SettingsSingleFileGenerator + Settings.Designer.vb + + + + + + + \ No newline at end of file diff --git a/NEATEST/bin/Debug/NEATEST.exe b/NEATEST/bin/Debug/NEATEST.exe new file mode 100644 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 index 0000000..731f6de --- /dev/null +++ b/NEATEST/bin/Debug/NEATEST.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/NEATEST/bin/Debug/NEATEST.pdb b/NEATEST/bin/Debug/NEATEST.pdb new file mode 100644 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 index 0000000..b10d07c --- /dev/null +++ b/NEATEST/bin/Debug/NEATEST.xml @@ -0,0 +1,83 @@ + + + + +NEATEST + + + + + + Module used to define the properties that are available in the My Namespace for WPF + + + + + + Returns the application object for the running application + + + + + Returns information about the host computer. + + + + + Returns information for the current user. If you wish to run the application with the current + Windows user credentials, call My.User.InitializeWithWindowsUser(). + + + + + Returns the application log. The listeners can be configured by the application's configuration file. + + + + + Returns the collection of Windows defined in the project. + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + +Application + + + + +InitializeComponent + + + + +Application Entry Point. + + + + +MainWindow + + + + +InitializeComponent + + + + diff --git a/NEATEST/obj/Debug/Application.g.i.vb b/NEATEST/obj/Debug/Application.g.i.vb new file mode 100644 index 0000000..b59ee2a --- /dev/null +++ b/NEATEST/obj/Debug/Application.g.i.vb @@ -0,0 +1,69 @@ +#ExternalChecksum("..\..\Application.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","38E64E5AB5A63056F51CEADEA78C4527E6306590") +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +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 + + +''' +'''Application +''' +Partial Public Class Application + Inherits System.Windows.Application + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() + + #ExternalSource("..\..\Application.xaml",5) + Me.StartupUri = New System.Uri("MainWindow.xaml", System.UriKind.Relative) + + #End ExternalSource + End Sub + + ''' + '''Application Entry Point. + ''' + _ + 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 index 0000000..b59ee2a --- /dev/null +++ b/NEATEST/obj/Debug/Application.g.vb @@ -0,0 +1,69 @@ +#ExternalChecksum("..\..\Application.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","38E64E5AB5A63056F51CEADEA78C4527E6306590") +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +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 + + +''' +'''Application +''' +Partial Public Class Application + Inherits System.Windows.Application + + ''' + '''InitializeComponent + ''' + _ + Public Sub InitializeComponent() + + #ExternalSource("..\..\Application.xaml",5) + Me.StartupUri = New System.Uri("MainWindow.xaml", System.UriKind.Relative) + + #End ExternalSource + End Sub + + ''' + '''Application Entry Point. + ''' + _ + 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 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 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 index 0000000..616a4b2 --- /dev/null +++ b/NEATEST/obj/Debug/MainWindow.g.i.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\MainWindow.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","0DFA720BD1EA524CD1EDE347D4098CBBB9B24227") +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +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 + + +''' +'''MainWindow +''' + _ +Partial Public Class MainWindow + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + 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 + + _ + 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 index 0000000..616a4b2 --- /dev/null +++ b/NEATEST/obj/Debug/MainWindow.g.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\MainWindow.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","0DFA720BD1EA524CD1EDE347D4098CBBB9B24227") +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +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 + + +''' +'''MainWindow +''' + _ +Partial Public Class MainWindow + Inherits System.Windows.Window + Implements System.Windows.Markup.IComponentConnector + + Private _contentLoaded As Boolean + + ''' + '''InitializeComponent + ''' + _ + 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 + + _ + 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 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 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 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 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 index 0000000..f6ce7e6 --- /dev/null +++ b/NEATEST/obj/Debug/NEATEST.vbproj.CoreCompileInputs.cache @@ -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 index 0000000..bf6f3cf --- /dev/null +++ b/NEATEST/obj/Debug/NEATEST.vbproj.FileListAbsolute.txt @@ -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 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 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 index 0000000..b10d07c --- /dev/null +++ b/NEATEST/obj/Debug/NEATEST.xml @@ -0,0 +1,83 @@ + + + + +NEATEST + + + + + + Module used to define the properties that are available in the My Namespace for WPF + + + + + + Returns the application object for the running application + + + + + Returns information about the host computer. + + + + + Returns information for the current user. If you wish to run the application with the current + Windows user credentials, call My.User.InitializeWithWindowsUser(). + + + + + Returns the application log. The listeners can be configured by the application's configuration file. + + + + + Returns the collection of Windows defined in the project. + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + +Application + + + + +InitializeComponent + + + + +Application Entry Point. + + + + +MainWindow + + + + +InitializeComponent + + + + diff --git a/NEATEST/obj/Debug/NEATEST_MarkupCompile.cache b/NEATEST/obj/Debug/NEATEST_MarkupCompile.cache new file mode 100644 index 0000000..7171b39 --- /dev/null +++ b/NEATEST/obj/Debug/NEATEST_MarkupCompile.cache @@ -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 index 0000000..be7c26c --- /dev/null +++ b/NEATEST/obj/Debug/NEATEST_MarkupCompile.i.cache @@ -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 index 0000000..4bf1d88 --- /dev/null +++ b/NEATEST/obj/Debug/NEATEST_MarkupCompile.i.lref @@ -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 index 0000000..4bf1d88 --- /dev/null +++ b/NEATEST/obj/Debug/NEATEST_MarkupCompile.lref @@ -0,0 +1,4 @@ + + +FE:\Visual Studio\NEATEST\NEATEST\MainWindow.xaml;; +