I want to be able to update my datagrid because I am updating the table in my datagrid database and want to see the changes in the grid, is there a way to automatically update the datagrid every 1 minute?
DataGrid.Items.Refresh() update the elements. Then you can use timer to start every minute to force update
DataGrid.Items.Refresh()
Here is an example implementation of a timer for updating a ListBox that you can adapt for your purpose.
Forward, you can use ObservableCollection to snap the grid to avoid manual updates.
ObservableCollection
Source: https://habr.com/ru/post/1496631/More articles:Optimizing Espresso Boolean Functions in Java - javaUse OpenGL ES 3 on Android? - c ++how to update my datagridview after adding new data - vb.netIs there a way to check if an Android device supports openGL ES 2.0? - androidwhat to use for paredit-convolute-sexp in paredit mode - elispCall my function from JQUERY on click - javascriptAngularJS Binding, multiple controllers through a service, part of a page created with php - angularjsHow does adding IDisposable change class semantics? - .netAre there any advantages in the following build commands? - assemblyRavenDB query does not return all records - c #All Articles