dwmkerr / consolecontrol

ConsoleControl is a C# class library that lets you embed a console in a WinForms or WPF application.
MIT License
723 stars 169 forks source link

Infinite output command freezing the GUI #64

Open mohamed-hilali opened 1 month ago

mohamed-hilali commented 1 month ago

Trying to run a command like: "Python.exe" with argument "c:\file.py" that contain the script :

i=0
while i>=0:
    print(i)
    i=i+1

this should give an infinite output in the richtextbox, but instead, all the Application freeze and i can't stop the process !!