ucShortcut.cs 697 B

1234567891011121314151617181920212223242526272829303132333435
  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. namespace TaskbarGroups.Views
  11. {
  12. /// <summary>
  13. ///
  14. /// </summary>
  15. public partial class ucShortcut : UserControl
  16. {
  17. public ProgramShortcut Psc { get; set; }
  18. public frmMain MotherForm { get; set; }
  19. public bool ThisCategory { get; set; }
  20. public ucShortcut()
  21. {
  22. InitializeComponent();
  23. }
  24. private void ucShortcut_Load(object sender, EventArgs e)
  25. {
  26. Show();
  27. }
  28. }
  29. }