About.cs 467 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace OneNote2PDF.Views
  11. {
  12. public partial class About : UserControl
  13. {
  14. public About()
  15. {
  16. InitializeComponent();
  17. }
  18. private void About_Load(object sender, EventArgs e)
  19. {
  20. }
  21. }
  22. }