/// <summary>
 /// Initializes a new instance of the <see cref="Form1"/> class.
 /// </summary>
 /// <param name="corpus">The corpus<see cref="Corpus"/></param>
 public Form1(Corpus corpus) : this()
 {
     Corpus = corpus;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="Form1"/> class.
 /// </summary>
 public Form1()
 {
     Corpus = new Corpus();
     InitializeComponent();
 }