码迷,mamicode.com
首页 >  
搜索关键字:setfont    ( 111个结果
Qt:使用自定义的字体
Qt:使用自定义的字体 1. 下载字体文件 2. 加载字体文件 3. 使用字体 QFontDatabase::addApplicationFont("XENOTRON.TTF"); ui->toolButton_2->setFont(QFont("XENOTRON", 34)); http://ww ...
分类:其他好文   时间:2016-10-20 00:10:10    阅读次数:230
移动端的无缝滚动+下拉刷新+定向滑动
<!DOCTYPE html><html lang="en"><head> <script> (function(){ function setFont(){ document.documentElement.style.fontSize=document.documentElement.clien ...
分类:移动开发   时间:2016-09-14 00:12:50    阅读次数:285
UIButton样式设置
btn.frame = CGRectMake(x, y, width, height); [btn setTitle: @”search” forState: UIControlStateNormal]; //设置按钮上的自体的大小 //[btn setFont: [UIFont systemFon ...
分类:其他好文   时间:2016-07-31 00:01:18    阅读次数:500
itop 2.2 导出PDF中文乱码问题解决
itop2.2导出PDF,中文会有乱码问题,这很明显就是字体设置问题,跟tcpdf无关。经过排查,修改文件itop/core/pdfbulkexport.class.inc.php,第128行即可,$oPDF->SetFont(‘dejavusans‘,‘‘,8,‘‘,true);改为$oPDF->SetFont(‘DroidSansFallback‘,‘‘,8,‘‘,true);
分类:其他好文   时间:2016-07-01 18:35:44    阅读次数:163
CEdit控件[转]
1、CEdit、CButton等从CWnd继承了重要的功能,使用CWnd::SetWindowText和CWnd::GetWindowText可以设置和获得其上的文本, CWnd::SetFont可以设置文本字体。为了让编辑框控件接受换行符,必须设置该控件支持多行输入这一属性。若在对话框的OnIni ...
分类:其他好文   时间:2016-06-29 12:49:42    阅读次数:164
蜗牛爱课 -- iOS 设置UIButton的字体的大小、显示位置、大小
/设置按钮上的自体的大小//[btn setFont: [UIFont systemFontSize: 14.0]]; //这种可以用来设置字体的大小,但是可能会在将来的SDK版本中去除改方法//应该使用btn.titleLabel.font = [UIFont systemFontOfSize: ...
分类:移动开发   时间:2016-01-26 01:35:05    阅读次数:235
iOS 之 UITextView
_lableAssess = [[UITextView alloc] init]; [_lableAssess setFrame:CGRectMake(left2, top2, width2, size.height)]; [_lableAssess setFont:[UIPara...
分类:移动开发   时间:2015-12-16 17:08:24    阅读次数:159
UIButton关于setFont方法过时的解决方法
环境:xcode7
分类:其他好文   时间:2015-10-19 15:43:30    阅读次数:259
【转发·台湾nvp系列例程】HALCON SetFont例程 (Delphi)
【转发·台湾nvp系列例程】HALCON SetFont例程 (Delphi)procedure TForm1.FormShow(Sender: TObject);var w, h : OleVariant;begin Set8087CW($27f); img := CoHImageX.Cre...
分类:Windows程序   时间:2015-10-01 15:11:27    阅读次数:776
QT的默认字体居然是MS Shell Dlg 2
设置全局字体:QFont font;font.setFamily("MS Shell Dlg 2"); // Tahoma 宋体qApp->setFont(font);检测全局字体:qDebug() font().rawName();qDebug() font().family();qDebug()...
分类:系统相关   时间:2015-09-01 18:25:16    阅读次数:2397
111条   上一页 1 ... 7 8 9 10 11 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!