首页 > 学院 > 开发设计 > 正文

c#asp.net调用系统设置字体文本框

2019-11-14 16:27:53
字体:
来源:转载
供稿:网友

一,调用系统字体文本框 
首先在bin文件夹右击--添加引用--.net标签里选择System.Windows.Forms--确定 

然后在cs文件里引入,using System.Windows.Forms; 

在代码里写 

C#代码  收藏代码
  1. FontDialog fd = new FontDialog();  
  2. fd.ShowDialog().ToString();  



就可以调出系统设置字体的那个文本框了 

二,用FontDialog弹出的文本框设置字体样式和大小 

C#代码  收藏代码
    1. FontDialog fd = new FontDialog();  
    2. fd.ShowDialog().ToString();  
    3.   
    4. Label1.Font.Name = fd.Font.FontFamily.Name.ToString() ;  
    5.   
    6. Label1.Font.Size = Convert.ToInt32(fd.Font.Size);  

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表