BaseForm.cs 198 B

12345678910
  1. using System;
  2. using System.Windows.Forms;
  3. namespace BeatLyrics.Tool.Utils
  4. {
  5. public class BaseForm : Form
  6. {
  7. protected void RunOnUiThread(Action action) => Invoke(action);
  8. }
  9. }