dump window pos to xml file before exit, reload window pos from xml when PW start

This commit is contained in:
Kang Yu 2024-07-13 15:22:10 -07:00
parent 958624db0a
commit 5fc803757a
4 changed files with 78 additions and 1 deletions

View file

@ -774,5 +774,16 @@ namespace PersistentWindows.SystrayShell
Log.Error(format, args);
}
public static void WriteDataDump()
{
try
{
pwp.WriteDataDump();
}
catch (Exception e)
{
Log.Error(e.ToString());
}
}
}
}