|
■No87667 (ばじゃ さん) に返信
> pictureboxのサイズをどの程度のサイズすれば良いか分からないので不便です。
そこだけ解決できれば良い、即ち、PictureBox の Width, Height を画像の Width, Height と 同じにできればよいということであれば、参考にされている記事のコード、
Bitmap bmp = new Bitmap(myAssembly.GetManifestResourceStream("Project1.test.jpg")); //PictureBox1に表示 PictureBox1.Image = bmp;
で、以下のように PictureBox の Width, Height を設定するコードを追加すればよいのでは?
Bitmap bmp = new Bitmap(myAssembly.GetManifestResourceStream("Project1.test.jpg"));
PictureBox1.Width = bmp.Width; PictureBox1.Height = bmp.Height;
//PictureBox1に表示 PictureBox1.Image = bmp;
|