要获取当前屏幕分辨率,您可以使用以下方法:
如果您需要以编程方式获取屏幕分辨率,您可以使用以下方法:
using System;
using System.Drawing;
class Program
{
static void Main()
{
Console.WriteLine("当前屏幕分辨率为:" + Screen.PrimaryScreen.Bounds.Width + "x" + Screen.PrimaryScreen.Bounds.Height);
}
}
import Foundation
let screenSize = NSScreen.main?.frame.size
print("当前屏幕分辨率为:\(Int(screenSize.width))x\(Int(screenSize.height))")
import os
os.system("xdpyinfo | grep 'dimensions:' | awk '{print $2}'")
这些方法将帮助您获取当前屏幕分辨率,无论您使用的是哪种操作系统。
云+社区技术沙龙[第25期]
Elastic 中国开发者大会
serverless days
腾讯技术开放日
腾讯技术开放日
高校开发者
云+社区技术沙龙[第5期]
领取专属 10元无门槛券
手把手带您无忧上云