| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2573 人关注过本帖
标题:隶书是什么特别字体?
取消只看楼主 加入收藏
一线两电脑
Rank: 1
等 级:新手上路
帖 子:43
专家分:0
注 册:2007-7-22
收藏
 问题点数:0 回复次数:1 
隶书是什么特别字体?

图片附件: 游客没有浏览图片的权限,请 登录注册


选择隶书再勾选下划线,下划线没有反应,可是把隶书改成其它的字体,却能出现下划线,请问下边代码错在哪里?

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

namespace radiocheck复选框
{
public partial class radiocheck复选框 : Form
{
public radiocheck复选框()
{
InitializeComponent();
}

private void radioButton1_CheckedChanged(object sender, EventArgs e)
{
//创建录书字体对象
if (radioButton1.Checked==true) //此句和if (radioButton1.Checked==true)功能是一样的."==true"可以取消吧,此看法有待论证
textBox1.Font = new Font("隶书", textBox1.Font.Size, textBox1.Font.Style);
    }

private void radioButton2_CheckedChanged(object sender, EventArgs e)
{
//创建宋体字体对象
if (radioButton2.Checked == true) //可以不写"==true"
textBox1.Font = new Font("宋体", textBox1.Font.Size, textBox1.Font.Style);
}

private void radioButton3_CheckedChanged(object sender, EventArgs e)
{
//创建楷书_GB2312字体对象
if (radioButton3.Checked)//可以把"radioButton3.Checked"写成"radioButton3.Checked==true"
textBox1.Font = new Font("楷体_GB2312", textBox1.Font.Size, textBox1.Font.Style);
}

private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
//创建粗体字型
if (checkBox1.Checked==true)//(checkBox1.Checked)也可以写成(checkBox1.Checked==true),意思一样,功能也一样
{
if (checkBox2.Checked && checkBox3.Checked)
textBox1.Font = new Font(textBox1.Font, FontStyle.Bold | FontStyle.Italic | FontStyle.Underline);
else if (checkBox2.Checked)
textBox1.Font = new Font(textBox1.Font, FontStyle.Bold | FontStyle.Italic);
else if (checkBox3.Checked)
textBox1.Font = new Font(textBox1.Font, FontStyle.Bold | FontStyle.Underline);
else
textBox1.Font = new Font(textBox1.Font, FontStyle.Bold);
}
else
{
if (checkBox2.Checked && checkBox3.Checked)
textBox1.Font = new Font(textBox1.Font, FontStyle.Italic | FontStyle.Underline);
else if (checkBox2.Checked)
textBox1.Font = new Font(textBox1.Font, FontStyle.Italic);
else if (checkBox3.Checked)
textBox1.Font = new Font(textBox1.Font, FontStyle.Underline);
else
textBox1.Font = new Font(textBox1.Font, FontStyle.Regular);
}
}

private void checkBox2_CheckedChanged(object sender, EventArgs e)
{
//创建斜体字型
if (checkBox2.Checked == true)
{
if (checkBox1.Checked && checkBox3.Checked)
textBox1.Font = new Font(textBox1.Font, FontStyle.Bold | FontStyle.Italic | FontStyle.Underline);
else if (checkBox1.Checked)
textBox1.Font = new Font(textBox1.Font, FontStyle.Bold | FontStyle.Italic);
else if (checkBox3.Checked)
textBox1.Font = new Font(textBox1.Font, FontStyle.Italic | FontStyle.Underline);
else
textBox1.Font = new Font(textBox1.Font, FontStyle.Italic);
}
else
{
if (checkBox1.Checked && checkBox3.Checked)
textBox1.Font = new Font(textBox1.Font, FontStyle.Bold | FontStyle.Underline);
else if (checkBox1.Checked)
textBox1.Font = new Font(textBox1.Font, FontStyle.Bold);
else if (checkBox3.Checked)
textBox1.Font = new Font(textBox1.Font, FontStyle.Underline);
else
textBox1.Font = new Font(textBox1.Font, FontStyle.Regular);
}
}

private void checkBox3_CheckedChanged(object sender, EventArgs e)
{
//创建下划线字型
if(checkBox3.Checked==true)
{
if(checkBox1.Checked&&checkBox2.Checked)
textBox1.Font=new Font(textBox1.Font,FontStyle.Bold|FontStyle.Italic|FontStyle.Underline);
else if(checkBox2.Checked)
textBox1.Font=new Font(textBox1.Font,FontStyle.Underline|FontStyle.Italic);
else if (checkBox1.Checked)
textBox1.Font=new Font(textBox1.Font,FontStyle.Bold|FontStyle.Underline);
else
textBox1.Font = new Font(textBox1.Font, FontStyle.Underline);
}
else
{
if(checkBox2.Checked&&checkBox1.Checked)
textBox1.Font=new Font(textBox1.Font,FontStyle.Bold|FontStyle.Italic);
else if(checkBox2.Checked)
textBox1.Font=new Font(textBox1.Font,FontStyle.Italic);
else if(checkBox1.Checked)
textBox1.Font=new Font(textBox1.Font,FontStyle.Bold);
else
textBox1.Font=new Font(textBox1.Font,FontStyle.Regular);
}
}
}
}

[此贴子已经被作者于2007-9-5 21:04:39编辑过]

搜索更多相关主题的帖子: 隶书 using 字体 System 下划线 
2007-09-05 21:04
一线两电脑
Rank: 1
等 级:新手上路
帖 子:43
专家分:0
注 册:2007-7-22
收藏
得分:0 
谢谢大家
谢谢pacocai,感谢你的指导,我也觉得你比我写的东西看起来舒服
隶书问题我查到了,不是代码问题,有些字体就是做不出下划线,其中包括隶书

2007-09-06 22:57
快速回复:隶书是什么特别字体?
数据加载中...
 
   



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

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