在线演示地址:Silverlight+WCF 新手实例 象棋 在线演示
本节是昨天突然想起,看到棋盘好像少了点什么,才突然想到棋盘中间少了“楚河汉界”四个字;
所以本节,就轻松点,在棋盘里补上这四个字了,顺便提供第七阶段的源码;
同时更新:Silverlight+WCF 新手实例 象棋 专题索引
OK,在棋盘上添加四个字,其实很简单了,添加四个TextBlock,注意一下margin的位置,就可以了:
我们在Board棋盘类里添加一个方法用于绘制四个字,然后调用一下就行了:
/// <summary>
/// 棋盘 by 路过秋天
/// http://cyq1162.cnblogs.com
/// </summary>
public class Board
{
//...省略N行...
private void Draw()
{
//...省略N行...
#region 画楚河汉界
DrawFont("路过秋天");//大伙这里自己改了
#endregion
}
//...省略N行...
private void DrawFont(string font)
{
int i = 0;
foreach (char item in font)
{
i++;
if (i == 3)
{
i = 5;//路两格
}
TextBlock text = new TextBlock()
{
Text = item.ToString(),
FontSize = gap / 2,
Margin = new Thickness(marginLeft + gap * i + gap / 4, marginTop + gap * 4 + gap / 6, 0, 0)
};
container.Children.Add(text);
}
}
}
/// 棋盘 by 路过秋天
/// http://cyq1162.cnblogs.com
/// </summary>
public class Board
{
//...省略N行...
private void Draw()
{
//...省略N行...
#region 画楚河汉界
DrawFont("路过秋天");//大伙这里自己改了
#endregion
}
//...省略N行...
private void DrawFont(string font)
{
int i = 0;
foreach (char item in font)
{
i++;
if (i == 3)
{
i = 5;//路两格
}
TextBlock text = new TextBlock()
{
Text = item.ToString(),
FontSize = gap / 2,
Margin = new Thickness(marginLeft + gap * i + gap / 4, marginTop + gap * 4 + gap / 6, 0, 0)
};
container.Children.Add(text);
}
}
}
这里就“楚河汉界”就换成个人名称啦,^-^!
OK,F5运行一下看下效果:[没想到这么快就断网了,一断又是半天了,到此文章还没发布呢。]
OK,本节就轻松到此了,顺路提供第七阶段源码下载:点击下载
相关文章
暂无评论...