Firstly thanks to those who have helped me out over the last month or so transform my app from code behind to a well structure caliburn/mvvm pattern. Its now so easy to manage!
I have a final question regarding views. On my home page I have 5 list boxes which show the "Top 5" scores from 5 golf tours. Is it possible to use a list of(listboxes) or user controls with the caliburn conventions? then rather than declaring 5 individual properties for each list I can just use a list/array.
<ListBox x:Name="Scores" ...
<ListBox x:Name="ABCScores"
<ListBox x:Name="123Scores" ...
Ideally I'm looking for someway to implement
<ListBox x:Name="Scores[0]"...
if this is not possible its not a problem
again thanks d.
I have a final question regarding views. On my home page I have 5 list boxes which show the "Top 5" scores from 5 golf tours. Is it possible to use a list of(listboxes) or user controls with the caliburn conventions? then rather than declaring 5 individual properties for each list I can just use a list/array.
<ListBox x:Name="Scores" ...
<ListBox x:Name="ABCScores"
<ListBox x:Name="123Scores" ...
Ideally I'm looking for someway to implement
<ListBox x:Name="Scores[0]"...
if this is not possible its not a problem
again thanks d.