I want to build a cross platform GUI app for linux and windows. ETO was recommended https://github.com/picoe/Eto I'm pretty used to winforms, but I'm stuck trying to get ETO to respond to a repeated call from a timer. The examples I've found require using the winforms this.InvokeRequired, which doesn't exist under Linux.
I want a timer to start up and send a signal to update the GUI textbox every 100ms.
I have this:
// This timer needs to kick off every 100ms to update the GUI.
Timer myTimer = new Timer(TimerTick, // the callback function
new object(),
0,
100); // Every 100ms
private static void TimerTick(object state)
{
if (ProcessTics == true)
{ Task.Factory.StartNew(CallTheBackgroundFunctions); }
}
private static void CallTheBackgroundFunctions()
{
OtherClass.ProcessTic();
mainTextDisplay.Text = OtherClass.GetText(); //This errors out
}
The problem is the timer is a static instance and I've written my OtherClass as a static instance. If I provide a reference to the main form, this.Invalidate(); doesn't update the gui.
I believe I need to use ETO's invoke, but I'm really struggling to make it work.
Any suggestions for a good way to have a background thread update the GUI on an ETO form? Or suggestions for another cross platform GUI framework that supports C#? This is all for a text processing project.
Thank you for your time.
The real trick was to properly call Application.Instance.Invoke delegate.
In case anyone else runs into a similar issue, here's how I arranged the classes to update a textbox from another thread.