diff --git a/.vs/Vocab Coverer/v15/.suo b/.vs/Vocab Coverer/v15/.suo new file mode 100644 index 0000000..4e49ffe Binary files /dev/null and b/.vs/Vocab Coverer/v15/.suo differ diff --git a/.vs/Vocab Coverer/v15/Server/sqlite3/db.lock b/.vs/Vocab Coverer/v15/Server/sqlite3/db.lock new file mode 100644 index 0000000..e69de29 diff --git a/.vs/Vocab Coverer/v15/Server/sqlite3/storage.ide b/.vs/Vocab Coverer/v15/Server/sqlite3/storage.ide new file mode 100644 index 0000000..56758a8 Binary files /dev/null and b/.vs/Vocab Coverer/v15/Server/sqlite3/storage.ide differ diff --git a/.vs/Vocab Coverer/v15/Server/sqlite3/storage.ide-shm b/.vs/Vocab Coverer/v15/Server/sqlite3/storage.ide-shm new file mode 100644 index 0000000..a1bd7a1 Binary files /dev/null and b/.vs/Vocab Coverer/v15/Server/sqlite3/storage.ide-shm differ diff --git a/.vs/Vocab Coverer/v15/Server/sqlite3/storage.ide-wal b/.vs/Vocab Coverer/v15/Server/sqlite3/storage.ide-wal new file mode 100644 index 0000000..f65518f Binary files /dev/null and b/.vs/Vocab Coverer/v15/Server/sqlite3/storage.ide-wal differ diff --git a/Vocab Coverer.sln b/Vocab Coverer.sln new file mode 100644 index 0000000..068bfdd --- /dev/null +++ b/Vocab Coverer.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28010.2003 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Vocab Coverer", "Vocab Coverer\Vocab Coverer.vbproj", "{2A259BB5-BED6-4498-95E2-54CA9B870263}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2A259BB5-BED6-4498-95E2-54CA9B870263}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2A259BB5-BED6-4498-95E2-54CA9B870263}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2A259BB5-BED6-4498-95E2-54CA9B870263}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2A259BB5-BED6-4498-95E2-54CA9B870263}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {443D95DC-9800-46CE-97D3-C08D601E9DC0} + EndGlobalSection +EndGlobal diff --git a/Vocab Coverer/App.config b/Vocab Coverer/App.config new file mode 100644 index 0000000..ecdcf8a --- /dev/null +++ b/Vocab Coverer/App.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/Vocab Coverer/Application.xaml b/Vocab Coverer/Application.xaml new file mode 100644 index 0000000..a945e04 --- /dev/null +++ b/Vocab Coverer/Application.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Vocab Coverer/Application.xaml.vb b/Vocab Coverer/Application.xaml.vb new file mode 100644 index 0000000..084cbe9 --- /dev/null +++ b/Vocab Coverer/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/Vocab Coverer/MainWindow.xaml b/Vocab Coverer/MainWindow.xaml new file mode 100644 index 0000000..4dfc515 --- /dev/null +++ b/Vocab Coverer/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/Vocab Coverer/MainWindow.xaml.vb b/Vocab Coverer/MainWindow.xaml.vb new file mode 100644 index 0000000..7249453 --- /dev/null +++ b/Vocab Coverer/MainWindow.xaml.vb @@ -0,0 +1,7 @@ +Class MainWindow + Sub Window_MouseDown(sender As Object, e As MouseButtonEventArgs) Handles Me.MouseDown + If e.ChangedButton = MouseButton.Left Then + DragMove() + End If + End Sub +End Class diff --git a/Vocab Coverer/My Project/AssemblyInfo.vb b/Vocab Coverer/My Project/AssemblyInfo.vb new file mode 100644 index 0000000..d3cc73e --- /dev/null +++ b/Vocab Coverer/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/Vocab Coverer/My Project/MyExtensions/MyWpfExtension.vb b/Vocab Coverer/My Project/MyExtensions/MyWpfExtension.vb new file mode 100644 index 0000000..22f84b7 --- /dev/null +++ b/Vocab Coverer/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/Vocab Coverer/My Project/Resources.Designer.vb b/Vocab Coverer/My Project/Resources.Designer.vb new file mode 100644 index 0000000..d002816 --- /dev/null +++ b/Vocab Coverer/My Project/Resources.Designer.vb @@ -0,0 +1,63 @@ +'------------------------------------------------------------------------------ +' +' 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 + +Imports System + +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("Vocab_Coverer.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 + resourceCulture = value + End Set + End Property + End Module +End Namespace diff --git a/Vocab Coverer/My Project/Resources.resx b/Vocab Coverer/My Project/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/Vocab Coverer/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/Vocab Coverer/My Project/Settings.Designer.vb b/Vocab Coverer/My Project/Settings.Designer.vb new file mode 100644 index 0000000..cedd9b5 --- /dev/null +++ b/Vocab Coverer/My Project/Settings.Designer.vb @@ -0,0 +1,71 @@ +'------------------------------------------------------------------------------ +' +' 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 + + + + _ +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(sender As Global.System.Object, 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 + +Namespace My + + _ + Friend Module MySettingsProperty + + _ + Friend ReadOnly Property Settings() As Global.Vocab_Coverer.MySettings + Get + Return Global.Vocab_Coverer.MySettings.Default + End Get + End Property + End Module +End Namespace diff --git a/Vocab Coverer/My Project/Settings.settings b/Vocab Coverer/My Project/Settings.settings new file mode 100644 index 0000000..40ed9fd --- /dev/null +++ b/Vocab Coverer/My Project/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Vocab Coverer/Vocab Coverer.ico b/Vocab Coverer/Vocab Coverer.ico new file mode 100644 index 0000000..6cf2367 Binary files /dev/null and b/Vocab Coverer/Vocab Coverer.ico differ diff --git a/Vocab Coverer/Vocab Coverer.vbproj b/Vocab Coverer/Vocab Coverer.vbproj new file mode 100644 index 0000000..18b5ccc --- /dev/null +++ b/Vocab Coverer/Vocab Coverer.vbproj @@ -0,0 +1,142 @@ + + + + Debug + AnyCPU + {2A259BB5-BED6-4498-95E2-54CA9B870263} + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F} + WinExe + Vocab_Coverer + Vocab Coverer + v4.7.2 + Custom + true + true + + + + AnyCPU + true + full + true + true + true + bin\Debug\ + Vocab Coverer.xml + 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314 + + + AnyCPU + pdbonly + false + false + true + false + true + bin\Release\ + Vocab Coverer.xml + 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314 + + + On + + + Binary + + + Off + + + On + + + Vocab Coverer.ico + + + + + + + + + + 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/Vocab Coverer/Vocab Coverer.vbproj.user b/Vocab Coverer/Vocab Coverer.vbproj.user new file mode 100644 index 0000000..944ec00 --- /dev/null +++ b/Vocab Coverer/Vocab Coverer.vbproj.user @@ -0,0 +1,6 @@ + + + + ShowAllFiles + + \ No newline at end of file diff --git a/Vocab Coverer/bin/Debug/Vocab Coverer.exe b/Vocab Coverer/bin/Debug/Vocab Coverer.exe new file mode 100644 index 0000000..f672115 Binary files /dev/null and b/Vocab Coverer/bin/Debug/Vocab Coverer.exe differ diff --git a/Vocab Coverer/bin/Debug/Vocab Coverer.exe.config b/Vocab Coverer/bin/Debug/Vocab Coverer.exe.config new file mode 100644 index 0000000..ecdcf8a --- /dev/null +++ b/Vocab Coverer/bin/Debug/Vocab Coverer.exe.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/Vocab Coverer/bin/Debug/Vocab Coverer.pdb b/Vocab Coverer/bin/Debug/Vocab Coverer.pdb new file mode 100644 index 0000000..ae9593a Binary files /dev/null and b/Vocab Coverer/bin/Debug/Vocab Coverer.pdb differ diff --git a/Vocab Coverer/bin/Debug/Vocab Coverer.xml b/Vocab Coverer/bin/Debug/Vocab Coverer.xml new file mode 100644 index 0000000..bb527e2 --- /dev/null +++ b/Vocab Coverer/bin/Debug/Vocab Coverer.xml @@ -0,0 +1,83 @@ + + + + +Vocab Coverer + + + + + + 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/Vocab Coverer/bin/Release/Vocab Coverer.exe b/Vocab Coverer/bin/Release/Vocab Coverer.exe new file mode 100644 index 0000000..4f3b227 Binary files /dev/null and b/Vocab Coverer/bin/Release/Vocab Coverer.exe differ diff --git a/Vocab Coverer/bin/Release/Vocab Coverer.exe.config b/Vocab Coverer/bin/Release/Vocab Coverer.exe.config new file mode 100644 index 0000000..ecdcf8a --- /dev/null +++ b/Vocab Coverer/bin/Release/Vocab Coverer.exe.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/Vocab Coverer/bin/Release/Vocab Coverer.pdb b/Vocab Coverer/bin/Release/Vocab Coverer.pdb new file mode 100644 index 0000000..cdcb3ee Binary files /dev/null and b/Vocab Coverer/bin/Release/Vocab Coverer.pdb differ diff --git a/Vocab Coverer/bin/Release/Vocab Coverer.xml b/Vocab Coverer/bin/Release/Vocab Coverer.xml new file mode 100644 index 0000000..bb527e2 --- /dev/null +++ b/Vocab Coverer/bin/Release/Vocab Coverer.xml @@ -0,0 +1,83 @@ + + + + +Vocab Coverer + + + + + + 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/Vocab Coverer/obj/Debug/Application.g.i.vb b/Vocab Coverer/obj/Debug/Application.g.i.vb new file mode 100644 index 0000000..b603e76 --- /dev/null +++ b/Vocab Coverer/obj/Debug/Application.g.i.vb @@ -0,0 +1,69 @@ +#ExternalChecksum("..\..\Application.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","FE3B7CA1C27D8E515AB5927B4AD2A60D0A0E966F") +'------------------------------------------------------------------------------ +' +' 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 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 +Imports Vocab_Coverer + + +''' +'''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/Vocab Coverer/obj/Debug/Application.g.vb b/Vocab Coverer/obj/Debug/Application.g.vb new file mode 100644 index 0000000..b603e76 --- /dev/null +++ b/Vocab Coverer/obj/Debug/Application.g.vb @@ -0,0 +1,69 @@ +#ExternalChecksum("..\..\Application.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","FE3B7CA1C27D8E515AB5927B4AD2A60D0A0E966F") +'------------------------------------------------------------------------------ +' +' 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 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 +Imports Vocab_Coverer + + +''' +'''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/Vocab Coverer/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Vocab Coverer/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..c4b5b2c Binary files /dev/null and b/Vocab Coverer/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Vocab Coverer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Vocab Coverer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..980bbbf Binary files /dev/null and b/Vocab Coverer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Vocab Coverer/obj/Debug/MainWindow.baml b/Vocab Coverer/obj/Debug/MainWindow.baml new file mode 100644 index 0000000..25bc497 Binary files /dev/null and b/Vocab Coverer/obj/Debug/MainWindow.baml differ diff --git a/Vocab Coverer/obj/Debug/MainWindow.g.i.vb b/Vocab Coverer/obj/Debug/MainWindow.g.i.vb new file mode 100644 index 0000000..b805e66 --- /dev/null +++ b/Vocab Coverer/obj/Debug/MainWindow.g.i.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\MainWindow.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","A7EB87985D3E5089B4DF91CBE1B222DC8023C221") +'------------------------------------------------------------------------------ +' +' 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 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 +Imports Vocab_Coverer + + +''' +'''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("/Vocab Coverer;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/Vocab Coverer/obj/Debug/MainWindow.g.vb b/Vocab Coverer/obj/Debug/MainWindow.g.vb new file mode 100644 index 0000000..b805e66 --- /dev/null +++ b/Vocab Coverer/obj/Debug/MainWindow.g.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\MainWindow.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","A7EB87985D3E5089B4DF91CBE1B222DC8023C221") +'------------------------------------------------------------------------------ +' +' 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 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 +Imports Vocab_Coverer + + +''' +'''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("/Vocab Coverer;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/Vocab Coverer/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll b/Vocab Coverer/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..e3fb851 Binary files /dev/null and b/Vocab Coverer/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/Vocab Coverer/obj/Debug/Vocab Coverer.exe b/Vocab Coverer/obj/Debug/Vocab Coverer.exe new file mode 100644 index 0000000..f672115 Binary files /dev/null and b/Vocab Coverer/obj/Debug/Vocab Coverer.exe differ diff --git a/Vocab Coverer/obj/Debug/Vocab Coverer.g.resources b/Vocab Coverer/obj/Debug/Vocab Coverer.g.resources new file mode 100644 index 0000000..7cb9f24 Binary files /dev/null and b/Vocab Coverer/obj/Debug/Vocab Coverer.g.resources differ diff --git a/Vocab Coverer/obj/Debug/Vocab Coverer.pdb b/Vocab Coverer/obj/Debug/Vocab Coverer.pdb new file mode 100644 index 0000000..ae9593a Binary files /dev/null and b/Vocab Coverer/obj/Debug/Vocab Coverer.pdb differ diff --git a/Vocab Coverer/obj/Debug/Vocab Coverer.vbproj.CoreCompileInputs.cache b/Vocab Coverer/obj/Debug/Vocab Coverer.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..36c60d6 --- /dev/null +++ b/Vocab Coverer/obj/Debug/Vocab Coverer.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a85b37fa185ff6cdf9c89e1c8b1eea88d6302a64 diff --git a/Vocab Coverer/obj/Debug/Vocab Coverer.vbproj.FileListAbsolute.txt b/Vocab Coverer/obj/Debug/Vocab Coverer.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..9a8a75e --- /dev/null +++ b/Vocab Coverer/obj/Debug/Vocab Coverer.vbproj.FileListAbsolute.txt @@ -0,0 +1,34 @@ +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\bin\Debug\Vocab Coverer.exe.config +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\bin\Debug\Vocab Coverer.exe +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\bin\Debug\Vocab Coverer.pdb +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\bin\Debug\Vocab Coverer.xml +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\Vocab Coverer.vbprojAssemblyReference.cache +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\MainWindow.g.vb +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\Application.g.vb +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\Vocab Coverer_MarkupCompile.cache +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\Vocab Coverer_MarkupCompile.lref +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\MainWindow.baml +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\Vocab Coverer.g.resources +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\Vocab_Coverer.Resources.resources +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\Vocab Coverer.vbproj.GenerateResource.cache +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\Vocab Coverer.vbproj.CoreCompileInputs.cache +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\Vocab Coverer.exe +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\Vocab Coverer.xml +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Debug\Vocab Coverer.pdb +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\bin\Debug\Vocab Coverer.exe.config +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\bin\Debug\Vocab Coverer.exe +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\bin\Debug\Vocab Coverer.pdb +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\bin\Debug\Vocab Coverer.xml +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\Vocab Coverer.vbprojAssemblyReference.cache +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\MainWindow.g.vb +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\Application.g.vb +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\Vocab Coverer_MarkupCompile.cache +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\Vocab Coverer_MarkupCompile.lref +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\MainWindow.baml +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\Vocab Coverer.g.resources +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\Vocab_Coverer.Resources.resources +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\Vocab Coverer.vbproj.GenerateResource.cache +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\Vocab Coverer.vbproj.CoreCompileInputs.cache +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\Vocab Coverer.exe +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\Vocab Coverer.xml +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\Vocab Coverer.pdb diff --git a/Vocab Coverer/obj/Debug/Vocab Coverer.vbproj.GenerateResource.cache b/Vocab Coverer/obj/Debug/Vocab Coverer.vbproj.GenerateResource.cache new file mode 100644 index 0000000..03cd205 Binary files /dev/null and b/Vocab Coverer/obj/Debug/Vocab Coverer.vbproj.GenerateResource.cache differ diff --git a/Vocab Coverer/obj/Debug/Vocab Coverer.vbprojAssemblyReference.cache b/Vocab Coverer/obj/Debug/Vocab Coverer.vbprojAssemblyReference.cache new file mode 100644 index 0000000..626d2fb Binary files /dev/null and b/Vocab Coverer/obj/Debug/Vocab Coverer.vbprojAssemblyReference.cache differ diff --git a/Vocab Coverer/obj/Debug/Vocab Coverer.xml b/Vocab Coverer/obj/Debug/Vocab Coverer.xml new file mode 100644 index 0000000..bb527e2 --- /dev/null +++ b/Vocab Coverer/obj/Debug/Vocab Coverer.xml @@ -0,0 +1,83 @@ + + + + +Vocab Coverer + + + + + + 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/Vocab Coverer/obj/Debug/Vocab Coverer_Content.g.i.vb b/Vocab Coverer/obj/Debug/Vocab Coverer_Content.g.i.vb new file mode 100644 index 0000000..df30560 --- /dev/null +++ b/Vocab Coverer/obj/Debug/Vocab Coverer_Content.g.i.vb @@ -0,0 +1,15 @@ +'------------------------------------------------------------------------------ +' +' 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 + + + diff --git a/Vocab Coverer/obj/Debug/Vocab Coverer_MarkupCompile.cache b/Vocab Coverer/obj/Debug/Vocab Coverer_MarkupCompile.cache new file mode 100644 index 0000000..cb7902a --- /dev/null +++ b/Vocab Coverer/obj/Debug/Vocab Coverer_MarkupCompile.cache @@ -0,0 +1,20 @@ +Vocab Coverer + + +winexe +VB +.vb +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\ +Vocab_Coverer +none +false + +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\Application.xaml +11151548125 + +6-722535863 +111682248113 +MainWindow.xaml; + +False + diff --git a/Vocab Coverer/obj/Debug/Vocab Coverer_MarkupCompile.i.cache b/Vocab Coverer/obj/Debug/Vocab Coverer_MarkupCompile.i.cache new file mode 100644 index 0000000..f6e554d --- /dev/null +++ b/Vocab Coverer/obj/Debug/Vocab Coverer_MarkupCompile.i.cache @@ -0,0 +1,20 @@ +Vocab Coverer + + +winexe +VB +.vb +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Debug\ +Vocab_Coverer +none +false + +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\Application.xaml +11151548125 + +7-661953248 +11-1225924000 +MainWindow.xaml; + +False + diff --git a/Vocab Coverer/obj/Debug/Vocab Coverer_MarkupCompile.lref b/Vocab Coverer/obj/Debug/Vocab Coverer_MarkupCompile.lref new file mode 100644 index 0000000..13671cb --- /dev/null +++ b/Vocab Coverer/obj/Debug/Vocab Coverer_MarkupCompile.lref @@ -0,0 +1,4 @@ + + +FD:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\MainWindow.xaml;; + diff --git a/Vocab Coverer/obj/Debug/Vocab_Coverer.Resources.resources b/Vocab Coverer/obj/Debug/Vocab_Coverer.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Vocab Coverer/obj/Debug/Vocab_Coverer.Resources.resources differ diff --git a/Vocab Coverer/obj/Release/Application.g.i.vb b/Vocab Coverer/obj/Release/Application.g.i.vb new file mode 100644 index 0000000..b603e76 --- /dev/null +++ b/Vocab Coverer/obj/Release/Application.g.i.vb @@ -0,0 +1,69 @@ +#ExternalChecksum("..\..\Application.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","FE3B7CA1C27D8E515AB5927B4AD2A60D0A0E966F") +'------------------------------------------------------------------------------ +' +' 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 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 +Imports Vocab_Coverer + + +''' +'''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/Vocab Coverer/obj/Release/Application.g.vb b/Vocab Coverer/obj/Release/Application.g.vb new file mode 100644 index 0000000..b603e76 --- /dev/null +++ b/Vocab Coverer/obj/Release/Application.g.vb @@ -0,0 +1,69 @@ +#ExternalChecksum("..\..\Application.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","FE3B7CA1C27D8E515AB5927B4AD2A60D0A0E966F") +'------------------------------------------------------------------------------ +' +' 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 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 +Imports Vocab_Coverer + + +''' +'''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/Vocab Coverer/obj/Release/DesignTimeResolveAssemblyReferences.cache b/Vocab Coverer/obj/Release/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..cf7d49f Binary files /dev/null and b/Vocab Coverer/obj/Release/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Vocab Coverer/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/Vocab Coverer/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..06624d8 Binary files /dev/null and b/Vocab Coverer/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Vocab Coverer/obj/Release/MainWindow.baml b/Vocab Coverer/obj/Release/MainWindow.baml new file mode 100644 index 0000000..f0d6cec Binary files /dev/null and b/Vocab Coverer/obj/Release/MainWindow.baml differ diff --git a/Vocab Coverer/obj/Release/MainWindow.g.i.vb b/Vocab Coverer/obj/Release/MainWindow.g.i.vb new file mode 100644 index 0000000..b805e66 --- /dev/null +++ b/Vocab Coverer/obj/Release/MainWindow.g.i.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\MainWindow.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","A7EB87985D3E5089B4DF91CBE1B222DC8023C221") +'------------------------------------------------------------------------------ +' +' 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 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 +Imports Vocab_Coverer + + +''' +'''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("/Vocab Coverer;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/Vocab Coverer/obj/Release/MainWindow.g.vb b/Vocab Coverer/obj/Release/MainWindow.g.vb new file mode 100644 index 0000000..b805e66 --- /dev/null +++ b/Vocab Coverer/obj/Release/MainWindow.g.vb @@ -0,0 +1,76 @@ +#ExternalChecksum("..\..\MainWindow.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","A7EB87985D3E5089B4DF91CBE1B222DC8023C221") +'------------------------------------------------------------------------------ +' +' 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 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 +Imports Vocab_Coverer + + +''' +'''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("/Vocab Coverer;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/Vocab Coverer/obj/Release/TempPE/My Project.Resources.Designer.vb.dll b/Vocab Coverer/obj/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..912dd41 Binary files /dev/null and b/Vocab Coverer/obj/Release/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/Vocab Coverer/obj/Release/Vocab Coverer.exe b/Vocab Coverer/obj/Release/Vocab Coverer.exe new file mode 100644 index 0000000..4f3b227 Binary files /dev/null and b/Vocab Coverer/obj/Release/Vocab Coverer.exe differ diff --git a/Vocab Coverer/obj/Release/Vocab Coverer.g.resources b/Vocab Coverer/obj/Release/Vocab Coverer.g.resources new file mode 100644 index 0000000..c84c4f6 Binary files /dev/null and b/Vocab Coverer/obj/Release/Vocab Coverer.g.resources differ diff --git a/Vocab Coverer/obj/Release/Vocab Coverer.pdb b/Vocab Coverer/obj/Release/Vocab Coverer.pdb new file mode 100644 index 0000000..cdcb3ee Binary files /dev/null and b/Vocab Coverer/obj/Release/Vocab Coverer.pdb differ diff --git a/Vocab Coverer/obj/Release/Vocab Coverer.vbproj.CoreCompileInputs.cache b/Vocab Coverer/obj/Release/Vocab Coverer.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..f73ab6e --- /dev/null +++ b/Vocab Coverer/obj/Release/Vocab Coverer.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d26dad09ee7635bf51f5d18055e01bc47712cfd8 diff --git a/Vocab Coverer/obj/Release/Vocab Coverer.vbproj.FileListAbsolute.txt b/Vocab Coverer/obj/Release/Vocab Coverer.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..0394255 --- /dev/null +++ b/Vocab Coverer/obj/Release/Vocab Coverer.vbproj.FileListAbsolute.txt @@ -0,0 +1,33 @@ +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\bin\Release\Vocab Coverer.exe.config +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\bin\Release\Vocab Coverer.exe +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\bin\Release\Vocab Coverer.pdb +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\bin\Release\Vocab Coverer.xml +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Release\MainWindow.g.vb +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Release\Application.g.vb +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Release\Vocab Coverer_MarkupCompile.cache +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Release\Vocab Coverer_MarkupCompile.lref +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Release\MainWindow.baml +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Release\Vocab Coverer.g.resources +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Release\Vocab_Coverer.Resources.resources +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Release\Vocab Coverer.vbproj.GenerateResource.cache +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Release\Vocab Coverer.vbproj.CoreCompileInputs.cache +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Release\Vocab Coverer.exe +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Release\Vocab Coverer.xml +C:\Users\mgrov\AppData\Local\Temporary Projects\Vocab Coverer\obj\Release\Vocab Coverer.pdb +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\bin\Release\Vocab Coverer.exe.config +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\bin\Release\Vocab Coverer.exe +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\bin\Release\Vocab Coverer.pdb +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\bin\Release\Vocab Coverer.xml +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\Vocab Coverer.vbprojAssemblyReference.cache +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\MainWindow.g.vb +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\Application.g.vb +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\Vocab Coverer_MarkupCompile.cache +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\Vocab Coverer_MarkupCompile.lref +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\MainWindow.baml +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\Vocab Coverer.g.resources +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\Vocab_Coverer.Resources.resources +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\Vocab Coverer.vbproj.GenerateResource.cache +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\Vocab Coverer.vbproj.CoreCompileInputs.cache +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\Vocab Coverer.exe +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\Vocab Coverer.xml +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\Vocab Coverer.pdb diff --git a/Vocab Coverer/obj/Release/Vocab Coverer.vbproj.GenerateResource.cache b/Vocab Coverer/obj/Release/Vocab Coverer.vbproj.GenerateResource.cache new file mode 100644 index 0000000..03cd205 Binary files /dev/null and b/Vocab Coverer/obj/Release/Vocab Coverer.vbproj.GenerateResource.cache differ diff --git a/Vocab Coverer/obj/Release/Vocab Coverer.vbprojAssemblyReference.cache b/Vocab Coverer/obj/Release/Vocab Coverer.vbprojAssemblyReference.cache new file mode 100644 index 0000000..626d2fb Binary files /dev/null and b/Vocab Coverer/obj/Release/Vocab Coverer.vbprojAssemblyReference.cache differ diff --git a/Vocab Coverer/obj/Release/Vocab Coverer.xml b/Vocab Coverer/obj/Release/Vocab Coverer.xml new file mode 100644 index 0000000..bb527e2 --- /dev/null +++ b/Vocab Coverer/obj/Release/Vocab Coverer.xml @@ -0,0 +1,83 @@ + + + + +Vocab Coverer + + + + + + 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/Vocab Coverer/obj/Release/Vocab Coverer_MarkupCompile.cache b/Vocab Coverer/obj/Release/Vocab Coverer_MarkupCompile.cache new file mode 100644 index 0000000..3c64897 --- /dev/null +++ b/Vocab Coverer/obj/Release/Vocab Coverer_MarkupCompile.cache @@ -0,0 +1,20 @@ +Vocab Coverer + + +winexe +VB +.vb +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\ +Vocab_Coverer +none +false + +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\Application.xaml +11151548125 + +6-722535863 +111682248113 +MainWindow.xaml; + +False + diff --git a/Vocab Coverer/obj/Release/Vocab Coverer_MarkupCompile.i.cache b/Vocab Coverer/obj/Release/Vocab Coverer_MarkupCompile.i.cache new file mode 100644 index 0000000..b071416 --- /dev/null +++ b/Vocab Coverer/obj/Release/Vocab Coverer_MarkupCompile.i.cache @@ -0,0 +1,20 @@ +Vocab Coverer + + +winexe +VB +.vb +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\obj\Release\ +Vocab_Coverer +none +false + +D:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\Application.xaml +11151548125 + +7566397627 +111682248113 +MainWindow.xaml; + +False + diff --git a/Vocab Coverer/obj/Release/Vocab Coverer_MarkupCompile.lref b/Vocab Coverer/obj/Release/Vocab Coverer_MarkupCompile.lref new file mode 100644 index 0000000..13671cb --- /dev/null +++ b/Vocab Coverer/obj/Release/Vocab Coverer_MarkupCompile.lref @@ -0,0 +1,4 @@ + + +FD:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\MainWindow.xaml;; + diff --git a/Vocab Coverer/obj/Release/Vocab_Coverer.Resources.resources b/Vocab Coverer/obj/Release/Vocab_Coverer.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Vocab Coverer/obj/Release/Vocab_Coverer.Resources.resources differ