Click here to Skip to main content
15,900,973 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: Nagivating from a aspx page to a silverlight page Pin
Pravin Patil, Mumbai4-Mar-11 0:57
Pravin Patil, Mumbai4-Mar-11 0:57 
GeneralRe: Nagivating from a aspx page to a silverlight page Pin
Vimalsoft(Pty) Ltd4-Mar-11 1:25
professionalVimalsoft(Pty) Ltd4-Mar-11 1:25 
QuestionListView with 50,000 controls Pin
Moonwalker0313-Mar-11 3:43
Moonwalker0313-Mar-11 3:43 
AnswerRe: ListView with 50,000 controls Pin
SledgeHammer013-Mar-11 5:00
SledgeHammer013-Mar-11 5:00 
GeneralRe: ListView with 50,000 controls Pin
Moonwalker0313-Mar-11 6:04
Moonwalker0313-Mar-11 6:04 
GeneralRe: ListView with 50,000 controls Pin
SledgeHammer013-Mar-11 6:31
SledgeHammer013-Mar-11 6:31 
GeneralRe: ListView with 50,000 controls Pin
Moonwalker0313-Mar-11 11:53
Moonwalker0313-Mar-11 11:53 
AnswerRe: ListView with 50,000 controls Pin
_Maxxx_3-Mar-11 15:55
professional_Maxxx_3-Mar-11 15:55 
If I get you correctly, you have a fixed list of times from 0 through to 90 minutes in steps of 100ms.

Against each of those times the user can enter zero or more items from a selection of 4000 IO Identifiers.

Most simply I'd think a grid would be possible - although it would have to have 90 x 60 * 10 = 54,000 rows which (as another poster says) isn't very user-friendly but is doable.

In column 1 of the grid is the time. The rest of the columns can then contain the IO identifier.

Done.

The data behind the grid can then be as simple as a collection of TimeFrame objects each of which contains a collection of IO identifiers.

Personally, because you said the majority if time points will be empty, I would probably think about showing the entries in a tree view or something - maybe level one has 90 entries for each of the 90 minutes - highlight those with some entry in them, expand to show the 60 seconds, and expend them to show the 10 lots of 100ms

Against the individual 100ms entries you can either expand the tree to show a list of IOs or show the IO details themselves in a separate control.

My feeling is that you are using a list box to enter a list of strings representing each of the IOs - so you could certainly keep this paradigm if you wanted, and still use the tree view effectively as a time selector.
___________________________________________
.\\axxx
(That's an 'M')

GeneralRe: ListView with 50,000 controls Pin
Moonwalker0314-Mar-11 2:16
Moonwalker0314-Mar-11 2:16 
GeneralRe: ListView with 50,000 controls Pin
_Maxxx_5-Mar-11 1:03
professional_Maxxx_5-Mar-11 1:03 
GeneralRe: ListView with 50,000 controls Pin
Moonwalker0315-Mar-11 3:14
Moonwalker0315-Mar-11 3:14 
GeneralRe: ListView with 50,000 controls Pin
_Maxxx_5-Mar-11 16:21
professional_Maxxx_5-Mar-11 16:21 
GeneralRe: ListView with 50,000 controls Pin
Moonwalker0315-Mar-11 21:52
Moonwalker0315-Mar-11 21:52 
QuestionForce xaml update from C# code Pin
marca2922-Mar-11 23:52
marca2922-Mar-11 23:52 
AnswerRe: Force xaml update from C# code Pin
SledgeHammer013-Mar-11 4:57
SledgeHammer013-Mar-11 4:57 
QuestionUnable to view the properties of third party grid contorls using Iaccessible interface Pin
Akhil042-Mar-11 1:32
Akhil042-Mar-11 1:32 
QuestionWPF : What event will be triggered after window_loaded Pin
DavJes2-Mar-11 0:02
DavJes2-Mar-11 0:02 
AnswerRe: WPF : What event will be triggered after window_loaded Pin
parama_chakra3-Mar-11 20:34
parama_chakra3-Mar-11 20:34 
AnswerRe: WPF : What event will be triggered after window_loaded Pin
SledgeHammer014-Mar-11 8:39
SledgeHammer014-Mar-11 8:39 
QuestionLoad picture from resource file XAML Pin
Mc_Topaz1-Mar-11 21:40
Mc_Topaz1-Mar-11 21:40 
AnswerRe: Load picture from resource file XAML Pin
Pete O'Hanlon1-Mar-11 22:19
mvePete O'Hanlon1-Mar-11 22:19 
GeneralRe: Load picture from resource file XAML Pin
Mc_Topaz1-Mar-11 22:36
Mc_Topaz1-Mar-11 22:36 
AnswerRe: Load picture from resource file XAML Pin
Tarun.K.S2-Mar-11 2:51
Tarun.K.S2-Mar-11 2:51 
Questioncheck if windows service is stopped. Pin
arkiboys28-Feb-11 21:16
arkiboys28-Feb-11 21:16 
AnswerRe: check if windows service is stopped. Pin
Vimalsoft(Pty) Ltd28-Feb-11 21:34
professionalVimalsoft(Pty) Ltd28-Feb-11 21:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.