Exemplo n.º 1
0
 /// <summary>
 /// Post a message to the UI thread from the context of the worker thread.
 /// </summary>
 protected void PostToUI(UiThreadMsg m)
 {
     Base.ExecInUI(new Base.EmptyDelegate(m.Run));
 }
Exemplo n.º 2
0
 // End IUiBroker interface implementation
 /// <summary>
 /// Post a message to the UI thread.
 /// </summary>
 public void PostToUi(UiThreadMsg m)
 {
     Base.ExecInUI(new Base.EmptyDelegate(m.Run));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Post a message to the UI thread from the context of the worker thread.
 /// </summary>
 protected void PostToUI(UiThreadMsg m)
 {
     Base.ExecInUI(new Base.EmptyDelegate(m.Run));
 }