[Feature] Windows Store #101

This commit is contained in:
tanjalibertatis 2020-07-15 21:46:09 +02:00
parent b0cdfe1ab2
commit b8a305e257
3 changed files with 9 additions and 5 deletions

View file

@ -81,7 +81,11 @@ namespace SystemTrayMenu.Helper
private void TriggerRowMouseLeave()
{
RowMouseLeave?.Invoke(dgv, eventArgs);
if (dgv != null)
{
RowMouseLeave?.Invoke(dgv, eventArgs);
}
dgv = null;
eventArgs = null;
}

View file

@ -631,7 +631,7 @@ to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
TAMAHO SystemTrayMenu - an improved Windows toolbar
TAMAHO SystemTrayMenu - browse and open your files easily
Copyright (C) 2020 Markus Hofknecht
This program is free software: you can redistribute it and/or modify

View file

@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("SystemTrayMenu")]
[assembly: AssemblyDescription("AN IMPROVED WINDOWS TOOLBAR")]
[assembly: AssemblyDescription("browse and open your files easily")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("TAMAHO")]
[assembly: AssemblyProduct("TAMAHO SystemTrayMenu")]
@ -39,5 +39,5 @@ using System.Runtime.InteropServices;
// 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.9.1")]
[assembly: AssemblyFileVersion("1.0.9.1")]
[assembly: AssemblyVersion("1.0.9.2")]
[assembly: AssemblyFileVersion("1.0.9.2")]