| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 548 人关注过本帖
标题:初学者c#窗体写不出文本,求指教
取消只看楼主 加入收藏
wuwei2333979
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2013-9-21
结帖率:0
收藏
已结贴  问题点数:20 回复次数:0 
初学者c#窗体写不出文本,求指教
private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
        {
            SolidBrush blueBrush = new SolidBrush(Color.Blue);
            SolidBrush redBrush = new SolidBrush(Color.Red);
            SolidBrush greenBrush = new SolidBrush(Color.Green);
            Rectangle rect = new Rectangle(20, 20, 200, 100);
            String drawString = "Hello GDI+ World!";
            Font drawFont = new Font("Verdana", 14);
            float x = 100.0F;
            float y = 100.0F;
            StringFormat drawFormat = new StringFormat();
            drawFormat.FormatFlags = StringFormatFlags.DirectionVertical;
            e.Graphics.DrawString("Drawing text", new Font("Tahoma", 14), greenBrush, rect);
            e.Graphics.DrawString(drawString, new Font("Arial", 12), redBrush, 120, 140);
            e.Graphics.DrawString(drawString, drawFont, blueBrush, x, y, drawFormat);
            blueBrush.Dispose();
            redBrush.Dispose();
            greenBrush.Dispose();
            drawFont.Dispose();
        }
搜索更多相关主题的帖子: private 
2013-09-21 19:15
快速回复:初学者c#窗体写不出文本,求指教
数据加载中...
 
   



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

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