国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 宁津县| 霞浦县| 静宁县| 略阳县| 太原市| 永春县| 龙里县| 新平| 衡山县| 吐鲁番市| 上虞市| 响水县| 棋牌| 天祝| 合作市| 江陵县| 淄博市| 盐城市| 金川县| 长岛县| 阿图什市| 宾川县| 收藏| 山阴县| 鹤岗市| 类乌齐县| 固原市| 襄汾县| 新巴尔虎左旗| 红桥区| 互助| 内丘县| 金秀| 黎平县| 吉安市| 九龙城区| 石首市| 定南县| 斗六市| 祁连县| 西林县|