PipeViewer icon indicating copy to clipboard operation
PipeViewer copied to clipboard

Fix Main Thread Not Respond While Init Pipes + F3 and Bold Button Fix

Open regevnoam1 opened this issue 1 year ago • 0 comments

Changes I Made: The Problem was in addNamedPipeToDataGridView() method that is used inside initializePipeList():

Solution: 1.Use async/await for Asynchronous Processing: Use asynchronous programming to ensure non-blocking behavior. 2. Perform all non-UI work (such as querying named pipes and processing their information) on a background thread, then update the UI on the main thread.

regevnoam1 avatar Dec 31 '24 12:12 regevnoam1