在代码中使用图片框中的图片
我如何使用在图片框中插入的图片到我的代码中?谢谢
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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