LoopComboxColumn.cs 722 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace RecipeEditorLib.DGExtension.CustomColumn
  8. {
  9. public class LoopComboxColumn : EditorDataGridTemplateColumnBase
  10. {
  11. public LoopComboxColumn() : base()
  12. {
  13. this.Options = new ObservableCollection<Option>();
  14. }
  15. public class Option
  16. {
  17. public string ControlName { get; set; }
  18. public string DisplayName { get; set; }
  19. public string RelatedParameters { get; set; }
  20. }
  21. public ObservableCollection<Option> Options { get; set; }
  22. }
  23. }