views:

457

answers:

2

Hi,

I am implementing a packet analyzer in C#. I need a timeline control which would display the packets on a line, and they would be selectable. Something like this. Are there ready made controls like this in C#?

Thanks.

A: 

If you're implementing this as a GUI, you could use WPF and add items to a listbox, using a custom layout to make it display horizontally. See this post as well.

Jeffrey Knight
A: 

Look at .NET chart control - has a timeline sample. Zedgraph might need a bit more work.

Mikos