コード例 #1
0
 public DocumentationLink(DocumentationLinkType type, string url, string label)
 {
     Label = label ?? type.ToString();
     Url   = url;
     Type  = type;
     Open  = new AnotherCommandImplementation(Execute);
 }
コード例 #2
0
 public DocumentationLink(DocumentationLinkType type, string url, string label = null)
 {
     Label = label ?? type.ToString();
     Url   = url;
     Type  = type;
     Open  = new RelayCommand(Execute);
 }
コード例 #3
0
 public DocumentationLink(DocumentationLinkType type, string url) : this(type, url, null)
 {
 }