ここに私のコードです。 DrawIcon
はスケール変換を無視しますが、変換変換は無視します。これには特別な理由はありますか、それとも単なるバグですか?Graphics.DrawIconはスケール変換を無視しますか?
protected override void OnPaint(PaintEventArgs e)
{
Icon icon = SystemIcons.Warning;
Image img = icon.ToBitmap();
// DrawIcon ignores this transform, but not a translate transform
e.Graphics.ScaleTransform(1.5f, 1.5f);
e.Graphics.DrawRectangle(Pens.Red, 60, 90, icon.Width, icon.Height);
e.Graphics.DrawString("Icon", this.Font, Brushes.Black, 100, 100);
e.Graphics.DrawIcon(icon, 60, 90);
e.Graphics.DrawRectangle(Pens.Red, 60, 190, img.Width, img.Height);
e.Graphics.DrawString("Bitmap", this.Font, Brushes.Black, 100, 200);
e.Graphics.DrawImage(img, 60, 190);
}
私はそれがそれのようなものかもしれないと思った。私はそれがどこにでも書かれているのを見つけられませんでした。 – climbage