Пример #1
0
 public FilterByRelations(List <MediaItemDTO> items)
 {
     InitializeComponent();
     service = new ItemsQueryService();
     this.RelationType.DataSource   = this.types;
     this.RelationType.SelectedItem = this.types[0];
     this.items = items;
     UpdateDataGrid();
 }
 public ItemsRelationsDisplay(string itemPath)
 {
     InitializeComponent();
     this.service  = new ItemsQueryService();
     this.itemPath = itemPath;
 }
Пример #3
0
 public FilterByProperties(List <MediaItemDTO> items)
 {
     InitializeComponent();
     this.items   = items;
     this.service = new ItemsQueryService();
 }