You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
515 B

  1. using System.Linq;
  2. using System.Windows;
  3. using System.Windows.Controls;
  4. using System.Windows.Forms;
  5. using System.Windows.Media;
  6. namespace HKCardOUT.Views
  7. {
  8. public partial class RootView : HandyControl.Controls.Window
  9. {
  10. public RootView()
  11. {
  12. InitializeComponent();
  13. if (Screen.AllScreens.Count() >= 2)
  14. {
  15. Dispatcher.Invoke(() =>
  16. {
  17. //显示广告屏幕
  18. });
  19. }
  20. }
  21. }
  22. }