There are following object:
- 'FieldItem' custom control;
- 'Field' - ... XAML-object, which will contains a dozen of field items;
- FieldItemViewModel - data class that hosts data to be displayed with 'FieldItem' custom control;
- position of 'FieldItem' control depend from data entity parameters that is bounded to the control (X and Y);
- items - ObservableCollection - collection that contains a data.
Question: what kind of object should I put inside of the in order to have each item of the my FieldItems to be displayed inside of Canvas?
I've planned to use ListView... but... can't imagine how is it possible to change position of the list view item...
Any thoughts are welcome!
Thanks.