Skip to content

Instantly share code, notes, and snippets.

@mrgarita
Created February 15, 2018 07:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrgarita/0916a96a443d002458451d87331ee3f3 to your computer and use it in GitHub Desktop.
Save mrgarita/0916a96a443d002458451d87331ee3f3 to your computer and use it in GitHub Desktop.
C#:リソースに設定した画像を表示する
using System;
using System.Windows.Forms;
namespace リソースに設定した画像を表示する
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.Text = ProductName;
// ピクチャボックスの設定
pictureBox1.Dock = DockStyle.Fill; // フォームいっぱいに貼り付ける
pictureBox1.SizeMode = PictureBoxSizeMode.Zoom; // 縦横比を変えずに引き延ばす
// ピクチャボックスにリソース画像を設定
pictureBox1.Image = Properties.Resources.kero;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment