About.cs 477 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.Windows.Forms;
  9. namespace Aitex.Core.Backend
  10. {
  11. public partial class About : UserControl
  12. {
  13. public About()
  14. {
  15. InitializeComponent();
  16. }
  17. private void About_Load(object sender, EventArgs e)
  18. {
  19. this.Dock = DockStyle.Fill;
  20. }
  21. }
  22. }