This repository has been archived on 2025-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
superstar/ScreenHelper.cs
2025-03-18 11:35:10 +08:00

15 lines
308 B
C#

using System;
using System.Linq;
using System.Windows.Forms;
namespace DualScreenDemo
{
public static class ScreenHelper
{
public static Screen GetSecondMonitor()
{
return Screen.AllScreens.FirstOrDefault(s => !s.Primary) ?? Screen.PrimaryScreen;
}
}
}