The most powerful .Net Grid
Net Grid is the best performing grid on the market adapted for real-time applications and displaying huge data volumes. Thread protection makes it safe to use with MVVM model.
Grid and Treelist
Grid and treelist. Easy to build any hierarchy. Single and multiple headers.
The Highest Performance
The highest performance. Low consumption of CPU and memory resources. Benchmark details.
Diagnostic Tools
Diagnostic Tools. Useful and convenient debugging tools, business logic inspection.
The Highest Quality
Various types of binding. Hierarchical and declarative binding at any hierarchy level. Simultaneous work with bound and unbound data.
Awards
From the Blog
Multithreaded application became something common. The main reason for that is execution of resource-intensive tasks in parallel to GUI without stopping it for long operations. As it is well known, the easiest way for asynchronous data processing used by ThreadPool. This method is not only the easiest, but also very efficient. Notwithstanding its merits, it [...]
Almost every modern application is multi-threaded. Threads are needed to work with various devices and IP protocol stack and to perform demanding computing operations. Results of work performed in these threads should be displayed in graphical controls. Control.Invoke / Control.BeginInvoke are the main methods used for thread synchronization.  These methods work excellent only when control [...]
It is well known that all graphical controls should work in one thread. There are many articles on this subject, so we shall not repeat them. In multi-threaded applications every call should be synchronized with the main thread containing windows message loop. Control is a base class that provides Control.Invoke and Control.BeginInvoke methods. The first [...]