public BugReporter()
            : base(Gtk.WindowType.Toplevel)
        {
            SysInfo = new SystemInformation();
            this.Build();

            PopulateInfo();
        }
        public BugReporter(string additionalCommentsText)
            : base(Gtk.WindowType.Toplevel)
        {
            SysInfo = new SystemInformation();
            this.Build();

            PopulateInfo();
            textview2.Buffer.Text = additionalCommentsText;
        }