AboutForm.cs 488 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using System.Runtime.InteropServices;
  9. using DirectShow.BaseClasses;
  10. namespace ExampleFilters
  11. {
  12. [ComVisible(true)]
  13. [Guid("56F4E96B-D101-4de8-BC48-8C4311C9C8C4")]
  14. public partial class AboutForm : BasePropertyPage
  15. {
  16. public AboutForm()
  17. {
  18. InitializeComponent();
  19. }
  20. }
  21. }