C# app to record currently focused window
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Service1.cs 500B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Diagnostics;
  6. using System.Linq;
  7. using System.ServiceProcess;
  8. using System.Text;
  9. namespace WindowMonitor
  10. {
  11. public partial class Service1 : ServiceBase
  12. {
  13. public Service1()
  14. {
  15. InitializeComponent();
  16. }
  17. protected override void OnStart(string[] args)
  18. {
  19. }
  20. protected override void OnStop()
  21. {
  22. }
  23. }
  24. }