Introduction - If you have any usage issues, please Google them yourself
		 
1using System 
 2using System.Net 
 3using System.Windows 
 4using System.Windows.Controls 
 5using System.Windows.Documents 
 6using System.Windows.Ink 
 7using System.Windows.Input 
 8using System.Windows.Media 
 9using System.Windows.Media.Animation 
10using System.Windows.Shapes 
11
12namespace WoodFoxWeiQi.UI
13...{
14    // 表示棋盘上某个交叉点上的棋子情况
15    public enum Stone
16    ...{
17        Black,
18
19        White,
20
21        None
22    }
23}
24