Quantcast
Channel: C#タグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 9529

C# ディスプレイサイズを表示する

$
0
0

やりたいこと

ディスプレイサイズを取得して表示する

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace myDisplay
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int disp_width = Screen.PrimaryScreen.Bounds.Width;
            int disp_height = Screen.PrimaryScreen.Bounds.Height;

            txtDispWidth.Text = disp_width.ToString();
            txtDispHeight.Text = disp_height.ToString();
        }
    }
}

Viewing all articles
Browse latest Browse all 9529

Trending Articles