GithubHelp home page GithubHelp logo

Comments (6)

Zheng-Li01 avatar Zheng-Li01 commented on June 15, 2024 1

The issue can reproduce both .NET from 6.0 to 9.0 and .NET Framework 4.7.2 to 4.8.1 as below screenshot.
11335

from winforms.

elachlan avatar elachlan commented on June 15, 2024 1

I don't think this is a bug. You are using thread.sleep in the UI thread. DataGridView.Refresh will trigger an invalidation of the whole gridview and repaint it. All of that will end up locking the UI thread.

It would be better to use a separate thread (via a background worker or similar) to report progress to the UI thread. BackgroundWorker.ReportProgress allows you to pass an object as well. Which can be your "progress" class.

from winforms.

lonitra avatar lonitra commented on June 15, 2024

@KlausLoeffelmann could you take an initial look at this?

from winforms.

LeafShi1 avatar LeafShi1 commented on June 15, 2024

This issue can be reproduced using the following simple code

 private void button1_Click(object sender, EventArgs e)
 {
     for (int i = 0; i < 100000; i++)
     {
         dataGridView1.Refresh();
     }
 }

WinFormsApp7.zip

from winforms.

DhivyaBharathi-SF3890 avatar DhivyaBharathi-SF3890 commented on June 15, 2024

We have checked the background worker with our scenario, but it did not help and caused an exception. When we call DataGrid.Refresh for a specific record by passing in the BackgroundWorker.ReportProgress, it also throws an exception. If we call BackgroundWorker.ReportProgress for a certain limit of records, the value only updates for those records. Please find the sample demo in the attachment. Could you please take a look at that sample and suggest a proper way to achieve this?

DataGrid_Refresh.zip

from winforms.

elachlan avatar elachlan commented on June 15, 2024

@DhivyaBharathi-SF3890 ObservableCollection is not threadsafe. You can't bind it on the UI thread and then create a separate thread and pass it to it afterwards.

I would avoid using datagrid and instead use a progress bar. Using the background worker report progress to change the progress percentage and some sort of text indicating the number of completed vs total (100/1000). Your dowork event needs to take in parameters, do work (reporting as you go), then return a result. You can't access things on the UI thread in doWork, This is why you pass parameters to it.

from winforms.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.