C\#PictureBox 이미지 컨트롤 로 이미지 교환 실현
2995 단어 C#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 이미지 교환 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 부 탁 드 리 겠 습 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
WebView2를 Visual Studio 2017 Express에서 사용할 수 있을 때까지Evergreen .Net Framework SDK 4.8 VisualStudio2017에서 NuGet을 사용하기 때문에 패키지 관리 방법을 packages.config 대신 PackageReference를 사용해야...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.