Form2.cs 646 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using CCWin;
  11. using System.Net.Mail;
  12. namespace TestProject
  13. {
  14. public partial class Form2 : CCSkinMain
  15. {
  16. int TimerCount = 0;
  17. public Form2()
  18. {
  19. InitializeComponent();
  20. }
  21. private void Form2_Load(object sender, EventArgs e)
  22. {
  23. }
  24. private void ChangeBackColor(object sender, EventArgs e)
  25. {
  26. }
  27. }
  28. }