I have a WinForm that contains a bunch of labels. When the form loads I have it populate the labels with some data that I retrieve in my middle tier eg. current # of files in a certain directory.
I want to put a button on the form which when pressed will refresh all the data/labels. What should the logic of my button's click event be?
Should I be redrawing the form? Reloading? Something else?