달력

12025  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
반응형
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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 WindowsFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
        {
            if(this.pictureBox1.Image != null)
            {
                try
                {
                    Bitmap bitmap = new Bitmap(this.pictureBox1.Image);
                    Color color = bitmap.GetPixel(e.X, e.Y);
                    this.label1.Text = $"RED : {color.R} GREEN : {color.G} BLUE : {color.B}";
                }
                catch (Exception)
                {
                }
            }
        }
    }
}

 

실행화면

 

'프로그래밍 > C#' 카테고리의 다른 글

[C#] Loading Form  (0) 2017.05.19
[C#]SendKeys.Send  (0) 2017.05.16
[C#]폼 중복 실행 방지  (0) 2017.05.03
[C#]드래그앤드롭  (0) 2017.05.01
[C#]PictureBox안에 있는 이미지 드래그로 이동시키기  (7) 2017.04.28
Posted by 유령회사
|