[VB.NET]空心字体

空心字体

实例说明

在本实例中,我们将制作一个能够显示空心字的应用程序。程序运行结果如图91-1所示。

<script type="text/javascript"> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>

图91-1 运行结果

技术要点

l 新建字体

l 空心字体

实现过程

■ 新建项目

打开Visual Studio.NET,选择"新建项目",在项目类型窗口中选择"Visual Basic项目",在模板窗口中选择"Windows应用程序",在名称域中输入"EmptyFont",然后选择保存路径。单击"确认"。

■ 添加控件

向窗体上添加两个Button控件。

■ 设置属性

切换到属性栏,对窗体上的控件设置属性。在本实例中,我们只需要将窗体和Button控件的Text属性设置与界面一致即可。

■ 添加代码

Private Sub ApplyEmptyFont()

Dim mygp As New System.Drawing.Drawing2D.GraphicsPath()

Dim newText As String = "空心字体"

Dim newfamily As FontFamily = New FontFamily("Arial")

Dim newfontStyle As FontStyle = FontStyle.Bold

Dim newemSize As Integer = 100

Dim neworigin As PointF = New PointF(97, 50)

Dim newformat As StringFormat = StringFormat.GenericDefault

mygp.AddString(newText, newfamily, newfontStyle, newemSize, neworigin, newformat)

' myGraphicsPath.AddEllipse(New Rectangle(0, 0, 200, 450))

Me.Region = New Region(mygp)

End Sub

'建立空心字

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

ApplyEmptyFont()

End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click

'Me.ShowInTaskbar = False

End

End Sub

■ 运行程序

单击菜单"调试|启动"或单击 图标运行程序。

小结

本实例介绍了制作空心字的过程,可以看出,在VB.NET中可以很方便的实现这个功能。图91-2是点击"显示空心字体"按钮后的结果。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值