I have a C#/WPF application that creates python code from drag-n-drop commands for non-programmers.
The resulting test is executed in a separate thread. One of those commands is a wrap around Python's 'raw_input' (using Python2.6).
In some case, a user put this command inside a loop by accident and ran the resulting test. Since my application is waiting for his input, he can't use the application's usual stop command (since my app has opened another message box and is waiting for input).
Is there any way to enable users to stop the run in such a case? It can be either something in Python or a way to make the main window of the application responsive in such a case.
Edit
The Python code looks something like that:
for i in range(5):
print "Labster7Information:i:Labster7Information"
print i
print "Labster7InputRequired:user input::Labster7InputRequired"
s = str.strip(raw_input())
The C# code for creating the new window is just creating a Window with a TextBox. When it is shown, if I don't set its Owner property, I can see my main window, but it's not functional.

CTRL+C– Dominic Kexel Jan 2 at 9:01alt+F4closes the current input request window, but since it's in a loop, another one is opened straight away. – Noich Jan 2 at 9:32