public void OnWebsitesChanged()
 {
     WebsitesField = new CrudList <WebsiteCfg>("Configured websites:", Websites)
     {
         SortingDirection    = ListSortDirection.Ascending,
         SortingPropertyName = "Name"
     };
 }
Esempio n. 2
0
 public void OnUrlPatternChanged()
 {
     UrlPatternField = new CrudList <UrlPattern>("Configured urls:", UrlPattern)
     {
         Height              = new GridLength(120.0),
         SortingDirection    = ListSortDirection.Descending,
         SortingPropertyName = "Priority"
     };
 }