Search code examples
c#monogtkvte

How to bind c# gtk vte terminal to a data stream


Using vte-sharp.dll, I have added vte to a gtk window. I want to stream data into the terminal. But How?


Solution

  • term.Feed ("Hello World");
    

    But I had to run this after the terminal was created first!

    while (GLib.MainContext.Iteration ());