PipeViewer
PipeViewer copied to clipboard
Fix Main Thread Not Respond While Init Pipes + F3 and Bold Button Fix
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.