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

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

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