在代码中使用图片框中的图片

发布于 2024-10-03 08:17:44 字数 644 浏览 0 评论 0原文

我如何使用在图片框中插入的图片到我的代码中?谢谢

public KingPiece(Image image, ChessColor color)
                : base(image, color)
            {


                ValidMoves = new Point(0, -1);    //  Up 1
                ValidMoves = new Point(1, -1);  //  Up 1, Right 1
                ValidMoves = new Point(1, 0);     //  Right 1
                ValidMoves = new Point(0, 1);
                ValidMoves = new Point(-1, 0);
                ValidMoves = new Point(-1, 1);
                ValidMoves = new Point(1, 1);
                ValidMoves = new Point(-1, -1);  //  Left 1, Up 1


            }

在这段代码中我想插入图片框中的图片。请帮助我

how can i use a pic i inserted in picturebox into mycodes?thanks

public KingPiece(Image image, ChessColor color)
                : base(image, color)
            {


                ValidMoves = new Point(0, -1);    //  Up 1
                ValidMoves = new Point(1, -1);  //  Up 1, Right 1
                ValidMoves = new Point(1, 0);     //  Right 1
                ValidMoves = new Point(0, 1);
                ValidMoves = new Point(-1, 0);
                ValidMoves = new Point(-1, 1);
                ValidMoves = new Point(1, 1);
                ValidMoves = new Point(-1, -1);  //  Left 1, Up 1


            }

in this code i want to insert a pic that is in picturebox.plz help me

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魂ガ小子 2024-10-10 08:17:44

PictureBox 有一个属性“图像”。
在您的代码中,您可以执行以下操作:
[Your-PictureBox-Name].Image = Image.FromFile([此处为您的文件名]);

当然,您不仅可以从文件中获取图像,还可以从流、位图甚至另一个图片框中获取图像。

http://msdn.microsoft.com/en-us/library /system.drawing.image.aspx

PictureBox has a property "Image".
In your code you can just do the following:
[Your-PictureBox-Name].Image = Image.FromFile([your filename here]);

of course you can get your image not just from a file but also from a stream, a bitmap or even another picturebox.

http://msdn.microsoft.com/en-us/library/system.drawing.image.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文