c# - WinForms -> toolbox for fast display of data -
i'm new c# , winforms, , i'm developing application, allow me read data serial port , display on display tool (listview,...).
now, got serial communication , other functionalities working, i'm having problem displaying data. need able display incoming data fast (every 1ms). display data (for now), i'm using datagridview, problem datagridview not fast enough.
so question is: there way display data fast? know human eye can't see data in interval, still... prefered display data in datagridview-like display, since it's easy organize data.
best regards, nejc
you not going succeed displaying data every 1 ms. should buffer incoming data on 1 thread, every n incoming data, call on method display data (i.e. adding n rows @ time). note need use invoke() calling on gui different thread (the thread receives data, not thread created gui).
Comments
Post a Comment