This commit is contained in:
Matthew Grove
2019-05-18 22:26:30 +01:00
parent 4ca6e6c7fa
commit 5ebdb7965c
69 changed files with 1747 additions and 0 deletions

BIN
.vs/Vocab Coverer/v15/.suo Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

25
Vocab Coverer.sln Normal file
View File

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

6
Vocab Coverer/App.config Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/>
</startup>
</configuration>

View File

@@ -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:Vocab_Coverer"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

View File

@@ -0,0 +1,6 @@
Class Application
' Application-level events, such as Startup, Exit, and DispatcherUnhandledException
' can be handled in this file.
End Class

View File

@@ -0,0 +1,12 @@
<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:Vocab_Coverer"
mc:Ignorable="d"
Title="Vocab Coverer" Height="700" Width="400" Topmost="True" WindowStartupLocation="CenterScreen" Cursor="Hand">
<Grid>
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Text="Click &amp; hold to drag"/>
</Grid>
</Window>

View File

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

View File

@@ -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("Vocab_Coverer")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("Vocab_Coverer")>
<Assembly: AssemblyCopyright("Copyright © 2018")>
<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("527c4f4e-6345-474f-a49d-38da503e5ac6")>
' 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")>

View File

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

View File

@@ -0,0 +1,63 @@
'------------------------------------------------------------------------------
' <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
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.
'''<summary>
''' A strongly-typed resource class, for looking up localized strings, etc.
'''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.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("Vocab_Coverer.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
resourceCulture = value
End Set
End Property
End Module
End Namespace

View File

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

View File

@@ -0,0 +1,71 @@
'------------------------------------------------------------------------------
' <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
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.8.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(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
<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.Vocab_Coverer.MySettings
Get
Return Global.Vocab_Coverer.MySettings.Default
End Get
End Property
End Module
End Namespace

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@@ -0,0 +1,142 @@
<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>{2A259BB5-BED6-4498-95E2-54CA9B870263}</ProjectGuid>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids>
<OutputType>WinExe</OutputType>
<RootNamespace>Vocab_Coverer</RootNamespace>
<AssemblyName>Vocab Coverer</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<MyType>Custom</MyType>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</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>Vocab Coverer.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>Vocab Coverer.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>
<PropertyGroup>
<ApplicationIcon>Vocab Coverer.ico</ApplicationIcon>
</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>
<ItemGroup>
<Resource Include="Vocab Coverer.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
</Project>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectView>ShowAllFiles</ProjectView>
</PropertyGroup>
</Project>

Binary file not shown.

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/>
</startup>
</configuration>

Binary file not shown.

View File

@@ -0,0 +1,83 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
Vocab Coverer
</name>
</assembly>
<members>
<member name="T:Vocab_Coverer.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:Vocab_Coverer.My.MyWpfExtension.Application">
<summary>
Returns the application object for the running application
</summary>
</member>
<member name="P:Vocab_Coverer.My.MyWpfExtension.Computer">
<summary>
Returns information about the host computer.
</summary>
</member>
<member name="P:Vocab_Coverer.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:Vocab_Coverer.My.MyWpfExtension.Log">
<summary>
Returns the application log. The listeners can be configured by the application's configuration file.
</summary>
</member>
<member name="P:Vocab_Coverer.My.MyWpfExtension.Windows">
<summary>
Returns the collection of Windows defined in the project.
</summary>
</member>
<member name="T:Vocab_Coverer.My.Resources.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Vocab_Coverer.My.Resources.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Vocab_Coverer.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:Vocab_Coverer.Application">
<summary>
Application
</summary>
</member>
<member name="M:Vocab_Coverer.Application.InitializeComponent">
<summary>
InitializeComponent
</summary>
</member>
<member name="M:Vocab_Coverer.Application.Main">
<summary>
Application Entry Point.
</summary>
</member>
<member name="T:Vocab_Coverer.MainWindow">
<summary>
MainWindow
</summary>
</member>
<member name="M:Vocab_Coverer.MainWindow.InitializeComponent">
<summary>
InitializeComponent
</summary>
</member>
</members>
</doc>

Binary file not shown.

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/>
</startup>
</configuration>

Binary file not shown.

View File

@@ -0,0 +1,83 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
Vocab Coverer
</name>
</assembly>
<members>
<member name="T:Vocab_Coverer.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:Vocab_Coverer.My.MyWpfExtension.Application">
<summary>
Returns the application object for the running application
</summary>
</member>
<member name="P:Vocab_Coverer.My.MyWpfExtension.Computer">
<summary>
Returns information about the host computer.
</summary>
</member>
<member name="P:Vocab_Coverer.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:Vocab_Coverer.My.MyWpfExtension.Log">
<summary>
Returns the application log. The listeners can be configured by the application's configuration file.
</summary>
</member>
<member name="P:Vocab_Coverer.My.MyWpfExtension.Windows">
<summary>
Returns the collection of Windows defined in the project.
</summary>
</member>
<member name="T:Vocab_Coverer.My.Resources.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Vocab_Coverer.My.Resources.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Vocab_Coverer.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:Vocab_Coverer.Application">
<summary>
Application
</summary>
</member>
<member name="M:Vocab_Coverer.Application.InitializeComponent">
<summary>
InitializeComponent
</summary>
</member>
<member name="M:Vocab_Coverer.Application.Main">
<summary>
Application Entry Point.
</summary>
</member>
<member name="T:Vocab_Coverer.MainWindow">
<summary>
MainWindow
</summary>
</member>
<member name="M:Vocab_Coverer.MainWindow.InitializeComponent">
<summary>
InitializeComponent
</summary>
</member>
</members>
</doc>

View File

@@ -0,0 +1,69 @@
#ExternalChecksum("..\..\Application.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","FE3B7CA1C27D8E515AB5927B4AD2A60D0A0E966F")
'------------------------------------------------------------------------------
' <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 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
'''<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

View File

@@ -0,0 +1,69 @@
#ExternalChecksum("..\..\Application.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","FE3B7CA1C27D8E515AB5927B4AD2A60D0A0E966F")
'------------------------------------------------------------------------------
' <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 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
'''<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

Binary file not shown.

View File

@@ -0,0 +1,76 @@
#ExternalChecksum("..\..\MainWindow.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","A7EB87985D3E5089B4DF91CBE1B222DC8023C221")
'------------------------------------------------------------------------------
' <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 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
'''<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("/Vocab Coverer;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

View File

@@ -0,0 +1,76 @@
#ExternalChecksum("..\..\MainWindow.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","A7EB87985D3E5089B4DF91CBE1B222DC8023C221")
'------------------------------------------------------------------------------
' <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 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
'''<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("/Vocab Coverer;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

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
a85b37fa185ff6cdf9c89e1c8b1eea88d6302a64

View File

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

View File

@@ -0,0 +1,83 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
Vocab Coverer
</name>
</assembly>
<members>
<member name="T:Vocab_Coverer.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:Vocab_Coverer.My.MyWpfExtension.Application">
<summary>
Returns the application object for the running application
</summary>
</member>
<member name="P:Vocab_Coverer.My.MyWpfExtension.Computer">
<summary>
Returns information about the host computer.
</summary>
</member>
<member name="P:Vocab_Coverer.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:Vocab_Coverer.My.MyWpfExtension.Log">
<summary>
Returns the application log. The listeners can be configured by the application's configuration file.
</summary>
</member>
<member name="P:Vocab_Coverer.My.MyWpfExtension.Windows">
<summary>
Returns the collection of Windows defined in the project.
</summary>
</member>
<member name="T:Vocab_Coverer.My.Resources.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Vocab_Coverer.My.Resources.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Vocab_Coverer.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:Vocab_Coverer.Application">
<summary>
Application
</summary>
</member>
<member name="M:Vocab_Coverer.Application.InitializeComponent">
<summary>
InitializeComponent
</summary>
</member>
<member name="M:Vocab_Coverer.Application.Main">
<summary>
Application Entry Point.
</summary>
</member>
<member name="T:Vocab_Coverer.MainWindow">
<summary>
MainWindow
</summary>
</member>
<member name="M:Vocab_Coverer.MainWindow.InitializeComponent">
<summary>
InitializeComponent
</summary>
</member>
</members>
</doc>

View File

@@ -0,0 +1,15 @@
'------------------------------------------------------------------------------
' <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
<Assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vocab%20coverer.ico")>

View File

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

View File

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

View File

@@ -0,0 +1,4 @@
FD:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\MainWindow.xaml;;

View File

@@ -0,0 +1,69 @@
#ExternalChecksum("..\..\Application.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","FE3B7CA1C27D8E515AB5927B4AD2A60D0A0E966F")
'------------------------------------------------------------------------------
' <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 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
'''<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

View File

@@ -0,0 +1,69 @@
#ExternalChecksum("..\..\Application.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","FE3B7CA1C27D8E515AB5927B4AD2A60D0A0E966F")
'------------------------------------------------------------------------------
' <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 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
'''<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

Binary file not shown.

View File

@@ -0,0 +1,76 @@
#ExternalChecksum("..\..\MainWindow.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","A7EB87985D3E5089B4DF91CBE1B222DC8023C221")
'------------------------------------------------------------------------------
' <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 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
'''<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("/Vocab Coverer;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

View File

@@ -0,0 +1,76 @@
#ExternalChecksum("..\..\MainWindow.xaml","{ff1816ec-aa5e-4d10-87f7-6f4963833460}","A7EB87985D3E5089B4DF91CBE1B222DC8023C221")
'------------------------------------------------------------------------------
' <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 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
'''<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("/Vocab Coverer;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

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
d26dad09ee7635bf51f5d18055e01bc47712cfd8

View File

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

View File

@@ -0,0 +1,83 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
Vocab Coverer
</name>
</assembly>
<members>
<member name="T:Vocab_Coverer.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:Vocab_Coverer.My.MyWpfExtension.Application">
<summary>
Returns the application object for the running application
</summary>
</member>
<member name="P:Vocab_Coverer.My.MyWpfExtension.Computer">
<summary>
Returns information about the host computer.
</summary>
</member>
<member name="P:Vocab_Coverer.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:Vocab_Coverer.My.MyWpfExtension.Log">
<summary>
Returns the application log. The listeners can be configured by the application's configuration file.
</summary>
</member>
<member name="P:Vocab_Coverer.My.MyWpfExtension.Windows">
<summary>
Returns the collection of Windows defined in the project.
</summary>
</member>
<member name="T:Vocab_Coverer.My.Resources.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Vocab_Coverer.My.Resources.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Vocab_Coverer.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:Vocab_Coverer.Application">
<summary>
Application
</summary>
</member>
<member name="M:Vocab_Coverer.Application.InitializeComponent">
<summary>
InitializeComponent
</summary>
</member>
<member name="M:Vocab_Coverer.Application.Main">
<summary>
Application Entry Point.
</summary>
</member>
<member name="T:Vocab_Coverer.MainWindow">
<summary>
MainWindow
</summary>
</member>
<member name="M:Vocab_Coverer.MainWindow.InitializeComponent">
<summary>
InitializeComponent
</summary>
</member>
</members>
</doc>

View File

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

View File

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

View File

@@ -0,0 +1,4 @@
FD:\mgrov\Documents\Visual Studio 2017\Projects\Vocab Coverer\Vocab Coverer\MainWindow.xaml;;