WPF Help Needed on Resizing data grid
-
Hi, I'm making a WPF application. It is like an organizer. The number of columns is fixed at 5, but the number of rows varies. It will be based on time interval selected by the user, which is 5, 10, 20, 30 min interval. How can I make a table that can adjust itself according to the user defined time interval? Thanks in advance
-
Hi, I'm making a WPF application. It is like an organizer. The number of columns is fixed at 5, but the number of rows varies. It will be based on time interval selected by the user, which is 5, 10, 20, 30 min interval. How can I make a table that can adjust itself according to the user defined time interval? Thanks in advance
Are you using a Gridview? or do you show a datatemplate in a listview? Either way you can use a timer to do this. Here is some information about that on MSDN: http://msdn.microsoft.com/en-us/library/system.threading.timer.aspx[^] In the TimerCallback you can add items to the list you are showing.
Dawn is nature's way of telling you to go to bed.