RtSystemManager.cs 444 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Controls;
  7. using Aitex.Core.Util;
  8. namespace MECF.Framework.RT.Core.Applications
  9. {
  10. public class RtSystemManager : Singleton<RtSystemManager>
  11. {
  12. public void AddCustomBackend(string title, UserControl uc)
  13. {
  14. RtApplication.MainView.AddItem(title, uc);
  15. }
  16. }
  17. }