国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > 綜合 > 正文

輕松實(shí)現(xiàn)旋轉(zhuǎn)顯示文本

2024-07-21 02:18:31
字體:
供稿:網(wǎng)友
//本程序顯示如何旋轉(zhuǎn)顯示文本,代碼很簡單,不過個(gè)人覺得做學(xué)習(xí)用還是不錯(cuò)的!
//作者: i.posei(ipqn)
//歡迎訪問 www.kunwsoft.com

using system;
using system.drawing;
using system.collections;
using system.componentmodel;
using system.windows.forms;
using system.data;
using system.drawing.drawing2d;
using system.drawing.text;

namespace eddy
{
public class form1:system.windows.forms.form
{
/// 必需的設(shè)計(jì)器變量。
private system.componentmodel.container components = null;

public form1()
{
initializecomponent();
}

protected override void dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.dispose();
}
}
base.dispose( disposing );
}

private void initializecomponent()
{
this.autoscalebasesize = new system.drawing.size(6, 14);
this.clientsize = new system.drawing.size(520, 520);
this.name = "form1";
this.text = "旋轉(zhuǎn)顯示文本";
this.paint += new system.windows.forms.painteventhandler(this.form1_paint);
}

[stathread]
static void main()
{
application.run(new form1());
}
private void form1_paint(object sender,system.windows.forms.painteventargs e)
{
//聲明并且初始化graphics對(duì)象
graphics g=e.graphics;
g.smoothingmode=smoothingmode.antialias;

string str="c#學(xué)習(xí)筆記 kunwsoft.com";
for(int i=0;i<360;i=i+10)
{
g.translatetransform(260,260);
//將指定旋轉(zhuǎn)應(yīng)用于g的變換矩陣
g.rotatetransform(i);

brush mybrush=brushes.red;
font drawfont = new font("宋體", 12);
g.drawstring(str,drawfont,mybrush,60,0);

g.resettransform();
}
}
}
}

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 永顺县| 子洲县| 富民县| 上林县| 横峰县| 都兰县| 祥云县| 绍兴市| 两当县| 金坛市| 长葛市| 封开县| 辽阳县| 浦北县| 山东| 巩留县| 湟中县| 溆浦县| 芦山县| 长岛县| 芷江| 湘潭县| 法库县| 崇信县| 十堰市| 巴楚县| 姜堰市| 建德市| 无极县| 班玛县| 资中县| 宕昌县| 札达县| 翁牛特旗| 阳谷县| 扎鲁特旗| 黄冈市| 灵川县| 桂平市| 威海市| 许昌县|