| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 595 人关注过本帖
标题:Font完成的意想不到的效果!
只看楼主 加入收藏
随风云
Rank: 1
等 级:新手上路
威 望:1
帖 子:263
专家分:0
注 册:2007-6-28
收藏
 问题点数:0 回复次数:1 
Font完成的意想不到的效果!

我在MSDN上看的,FONT类的用法:有段代码稍加改造就完成了一个意想不到的效果:
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
MPaint (e);
return;
}
private void MPaint(PaintEventArgs e)
{
float m = 3.0f;
// Create a Font object.
Font myFont = new Font("Arial", 16);
//Draw text to the screen with myFont.
e.Graphics.DrawString(
"This is the first line",
myFont,
Brushes.Yellow ,
new PointF(0, 0));
//Get the height of myFont.
float height = myFont.GetHeight(m);
//Draw text immediately below the first line of text.
e.Graphics.DrawString(
"This is the first line",
myFont,
Brushes.Red ,
new PointF(0, height));

}
效果如下图:

图片附件: 游客没有浏览图片的权限,请 登录注册

搜索更多相关主题的帖子: 效果 
2007-10-31 23:17
快速回复:Font完成的意想不到的效果!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016354 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved