C\#PictureBox 이미지 컨트롤 로 이미지 교환 실현

Windows 창 프로그램 에서 그림 을 표시 할 때 그림 컨트롤(PictureBox)을 사용 해 야 합 니 다.그림 의 설정 방식 은 배경 그림 의 설정 방식 과 비슷 합 니 다.
그림 컨트롤 에서 자주 사용 하 는 속성 은 다음 표 와 같 습 니 다.    
  
그림 컨트롤 에 있 는 그림 의 설정 은 ImageLocation 속성 을 직접 사용 하여 그림 경 로 를 지정 할 수 있 는 것 을 제외 하고
Image.FromFile 방법 으로 설정 할 수도 있 습 니 다.실 현 된 코드 는 다음 과 같다.

        .Image = Image. FromFile(       );
【실례】
그림 교환 을 실현 하 다.
Form1.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
 
namespace PictureBoxForm
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
 
        //      ,            
        private void Form1_Load(object sender, EventArgs e)
        {
            //      :        .Image = Image. FromFile(       );
            pictureBox1.Image = Image.FromFile(@"C:\Users\86186\Desktop\01.jpg");
            //              ,       
            pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
            pictureBox2.Image = Image.FromFile(@"C:\Users\86186\Desktop\02.jpg");
            pictureBox2.SizeMode = PictureBoxSizeMode.StretchImage;         
        }
 
        //“  ”       ,      
        private void button1_Click(object sender, EventArgs e)
        {
            //            ,        
            PictureBox pictureBox = new PictureBox();
            pictureBox.Image = pictureBox1.Image;
            pictureBox1.Image = pictureBox2.Image;
            pictureBox2.Image = pictureBox.Image;
        }
    }
}
Program.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
 
namespace PictureBoxForm
{
    static class Program
    {
        /// <summary>
        ///          。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}

 
C\#PictureBox 이미지 컨트롤 이 이미지 교환 을 실현 하 는 것 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 C\#PictureBox 이미지 교환 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 부 탁 드 리 겠 습 니 다!

좋은 웹페이지 즐겨찾기