DataGridView Refresh of the DataGrid and WinForm for WPF

Source: Internet
Author: User

The loading of the DataGrid's data source requires a lot of IO operations, which cannot be displayed to the UI until the data is fully read. Due to the lack of familiarity with WPF data binding, there is not much time for observecollection and other content to be studied, only a few trickery methods can be used.

Set the DataGrid's data source, as long as you modify the ItemsSource property, as follows:

List dataList = new list () DataGrid1. ItemsSource = dataList;

But without data binding, add to DataList is not updated on the UI unless you click on the column headings, sort the columns, and the UI thread updates the data display. The active approach is to use the Refresh method, as follows:

DataGrid1.Items.Refresh ();

WinForm's DataGridView to use this binding

bindinglist<testclass> Lstans = new bindinglist<testclass> ();

If you use a DataTable, you can update it directly

DataGridView Refresh of the DataGrid and WinForm for WPF

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.