Пример #1
0
        private void ShowBugReportWindow(string message, List <string> att, bool enableAttach)
        {
            FormFeedBack frm = new FormFeedBack(this, message, att, enableAttach);

            frm.StartPosition = FormStartPosition.CenterParent;
            frm.ShowDialog(this);
        }
Пример #2
0
 private void ShowBugReportWindow(string message, List<string> att, bool enableAttach)
 {
     FormFeedBack frm = new FormFeedBack(this, message, att, enableAttach);
     frm.StartPosition = FormStartPosition.CenterParent;
     frm.ShowDialog(this);
 }