Exemplo n.º 1
0
 private void btnUninstall_Click(object sender, EventArgs e)
 {
     // uninstall service
     try
     {
         this.Enabled   = false;
         Cursor.Current = Cursors.WaitCursor;
         ServiceUtilities.Uninstall("EDScreenshotService");
     }
     finally
     {
         updateServiceStatus();
         Cursor.Current = Cursors.Default;
         this.Enabled   = true;
     }
 }