• 大小: 0.07M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-16
  • 语言: C#
  • 标签: 其他  

资源简介

C#GDI绘图_窗体绘制文字.rar

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace FontDrawForm
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }


        protected override void OnPaint(PaintEventArgs e)
        {
            Graphics g = e.Graphics;
            SolidBrush br = new SolidBrush(Color.Blue);
            Font font = new Font(“微软雅黑“ 12);
            StringFormat sf =new StringFormat();
            sf.FormatFlags = StringFormatFlags.DirectionVertical;
            g.DrawString(“你好!My Baby!“ font br new PointF(20.0f 20.0f) sf);
            g.DrawString(“你好!My Baby!“ + Environment.NewLine+“换行了!呵呵“ font br new PointF(20.0f 20.0f));
        }
    }

    
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       3770  2009-02-14 11:56  C#GDI绘图_窗体绘制文字\Backup\FontDrawForm.csproj

     文件        913  2009-02-14 11:53  C#GDI绘图_窗体绘制文字\Backup\FontDrawForm.sln

    ..A..H.     14848  2009-02-19 16:04  C#GDI绘图_窗体绘制文字\Backup\FontDrawForm.v12.suo

     文件        937  2009-02-17 13:43  C#GDI绘图_窗体绘制文字\Backup\Form1.cs

     文件       1399  2009-02-14 11:53  C#GDI绘图_窗体绘制文字\Backup\Form1.Designer.cs

     文件       5814  2009-02-14 11:53  C#GDI绘图_窗体绘制文字\Backup\Form1.resx

     文件        493  2009-02-14 11:53  C#GDI绘图_窗体绘制文字\Backup\Program.cs

     文件       1380  2009-02-14 11:53  C#GDI绘图_窗体绘制文字\Backup\Properties\AssemblyInfo.cs

     文件       2874  2009-02-14 11:53  C#GDI绘图_窗体绘制文字\Backup\Properties\Resources.Designer.cs

     文件       5612  2009-02-14 11:53  C#GDI绘图_窗体绘制文字\Backup\Properties\Resources.resx

     文件       1097  2009-02-14 11:53  C#GDI绘图_窗体绘制文字\Backup\Properties\Settings.Designer.cs

     文件        249  2009-02-14 11:53  C#GDI绘图_窗体绘制文字\Backup\Properties\Settings.settings

     文件       9216  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\bin\Debug\FontDrawForm.exe

     文件      32256  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\bin\Debug\FontDrawForm.pdb

     文件      22704  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\bin\Debug\FontDrawForm.vshost.exe

     文件        490  2013-03-18 17:00  C#GDI绘图_窗体绘制文字\bin\Debug\FontDrawForm.vshost.exe.manifest

     文件       5273  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\FontDrawForm.csproj

     文件        453  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\FontDrawForm.csproj.user

     文件        992  2019-11-12 13:40  C#GDI绘图_窗体绘制文字\FontDrawForm.sln

    ..A..H.     14848  2009-02-19 16:04  C#GDI绘图_窗体绘制文字\FontDrawForm.suo

    ..A..H.     23040  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\FontDrawForm.v12.suo

     文件        937  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\Form1.cs

     文件       2274  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\Form1.Designer.cs

     文件       5814  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\Form1.resx

     文件       7941  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\obj\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6985  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       2232  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\obj\Debug\FontDrawForm.csproj.FileListAbsolute.txt

     文件        847  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\obj\Debug\FontDrawForm.csproj.GenerateResource.Cache

     文件       8252  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\obj\Debug\FontDrawForm.csprojResolveAssemblyReference.cache

     文件       9216  2019-11-12 13:41  C#GDI绘图_窗体绘制文字\obj\Debug\FontDrawForm.exe

............此处省略23个文件信息

评论

共有 条评论