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

168 Views Asked by At

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

1

There are 1 best solutions below

0
On BEST ANSWER
term.Feed ("Hello World");

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

while (GLib.MainContext.Iteration ());