codecamp

使用华丽丽的字体

使用华丽丽的字体

所有的 TextBlock 等都用的默认字体,大家是否会感觉很千篇一律很枯燥呢?对于 FontFamily,我们见过一些可以用的字体,但这个属性不像 Foreground 等有下拉框,所以我们在应用中见过的许多有意思的字体却没法用,因为不知道名字。

代码的话也贴张图示意一下吧。

好了,我就不再多说废话啦,名字都是从这里来的——>>>>>

注意: 1)除了微软雅黑外,大部分字体只能在 Windows 8/8.1/10 上体现出来,在 WP8/8.1 上无法发挥作用。这是因为这个字体库太大,微软没有放到手机上。

2)大部分中文字体可以作用在英文文本上,而英文字体则无法作用在中文文本上。(经验之谈,如果特例,请告知,谢谢。)

使用动态磁贴示例
DatePickerFlyout 等的使用
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

页面布局与基本导航

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }