Hi all!
I'm programming a small internet radio player in C# and as a part of it, I wanted to include the station's time schedule.
Now the problem is, I have no idea what would be the best approach to this.
The design idea should be more or less like this web version of the schedule:
http://bassdrive.czech nology.cz/schedule/
dataGridView doesn't seem to be the solution at all (unflexible cell contents, no cell merging etc).
Another thing I've tried is TableLayoutPane l which I almost got to work fine but it makes some problems that make the formatting unpredictable and therefore unreliable. Also, the repainting of the schedule is pretty "slow" (very noticeable even on a fast machine).
What would you experienced programmers recommend for this task?
Thanks in advance!
I'm programming a small internet radio player in C# and as a part of it, I wanted to include the station's time schedule.
Now the problem is, I have no idea what would be the best approach to this.
The design idea should be more or less like this web version of the schedule:
http://bassdrive.czech nology.cz/schedule/
dataGridView doesn't seem to be the solution at all (unflexible cell contents, no cell merging etc).
Another thing I've tried is TableLayoutPane l which I almost got to work fine but it makes some problems that make the formatting unpredictable and therefore unreliable. Also, the repainting of the schedule is pretty "slow" (very noticeable even on a fast machine).
What would you experienced programmers recommend for this task?
Thanks in advance!
Comment