1 DuiLib字体

1.1 DuiLib字体属性

属性 说明
id 用于标识Font,类型:INT
name 用于指定字体名称,类型:STRING
size 用于指定字体大小,类型:INT
bold 用于指定是否加粗,类型:BOOL,默认值为false
underline 用于指定是否添加下划线,类型:BOOL,默认值为false
italic 用于指定是否将字体设为斜体,类型:BOOL,默认值为false
default 用于指定是否将该Font设为全局默认字体,类型:BOOL,默认值为false

注意:Font属性的声明必须位于根元素Window内

1.2 DuiLib xml示例

1.2.1 字体定义

在根元素Window内添加以下字体的声明

<Font id="0" name="宋体" size="17" bold="true" underline="true" italic="true" />

上述xml定义了字体为宋体,大小为17,加粗,有下划线,斜体的字体。

1.2.2 字体使用

在需要设置字体的控件中(比如Label或者Text)中设置font=字体id,如下所示:

<Label text="DuiLib演示" textcolor="#FFFFFFFF" font="0" />

1.2.3 完整示例

<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<Window size="1080,608" roundcorner="0,0" sizebox="4,4,6,6" caption="0,0,0,90" mininfo="1080,608">
    Font id="0" name="宋体" size="17" bold="true" underline="true" italic="true" />
    <HorizontalLayout >
        <Label text="字体示例" textcolor="#FFFFFFFF" font="0" />
    </HorizontalLayout>
</Window>