inserting image into codes in chess game c#
问题 i asked a question about chess game 2days ago,and a friend suggest me the code below,and i have question about it.it was this link please see: private image Displayimage; i don't know how should i put images from pieces of chess game in it,and where should i put it? class PiecePosition { public enum ChessColor { White, Black, } public class ChessPiece { private Image DisplayedImage; private ChessColor DisplayedColor; private Point CurrentSquare; private Point[] ValidMoves; public ChessPiece