BEurtle.IssuesForm.NewIssue_Click C# (CSharp) Method

NewIssue_Click() private method

private NewIssue_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void NewIssue_Click(object sender, EventArgs e)
        {
            var detail = new IssueDetail(plugin, Guid.Empty, plugin.creators, plugin.reporters, plugin.assigneds, plugin.authors);
            if (DialogResult.OK == detail.ShowDialog(this))
                writeOutIssue(detail);
        }