示例#1
0
 public NewIssueEventArgs(Issue issue)
 {
     this._issue = issue;
 }
示例#2
0
文件: Issue.cs 项目: jpheary/Argix08
 internal Action(Issue parent) : this(parent, null)
 {
 }
示例#3
0
 public OpenIssueWindowEventArgs(Issue issue, string searchText, ref bool handled)
 {
     this._issue = issue; this._searchText = searchText; this._handled = handled;
 }