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