Metro の日本語フォント (.NET)

この内容は Windows 8 Developer Preview を元に記述しています。

Metro アプリの日本語フォントはデフォルトで何が利用されるか確認してみました。

<StackPanel Orientation="Vertical">
            
    <StackPanel Orientation="Vertical">
        <TextBlock Text="Devloper Designer - Default" />
        <TextBlock Text="Devloper Designer - Segoe UI Light" 
                    FontFamily="Segoe UI Light" />
        <TextBlock Text="Devloper Designer - Meiryo UI" 
                    FontFamily="Meiryo UI" />
        <TextBlock Text="Devloper Designer - Meiryo" 
                    FontFamily="Meiryo" />
        <TextBlock Text="Devloper Designer - MS Gothic" 
                    FontFamily="MS Gothic" />
    </StackPanel>

    <StackPanel Orientation="Vertical" Margin="0,30,0,0">
        <TextBlock Text="開発者とデザイナー - Default" />
        <TextBlock Text="開発者とデザイナー - Segoe UI Light" 
                    FontFamily="Segoe UI Light" />
        <TextBlock Text="開発者とデザイナー - Meiryo UI" 
                    FontFamily="Meiryo UI" />
        <TextBlock Text="開発者とデザイナー - Meiryo" 
                    FontFamily="Meiryo" />
        <TextBlock Text="開発者とデザイナー - MS Gothic" 
                    FontFamily="MS Gothic" />
    </StackPanel>

    <StackPanel Orientation="Vertical" Margin="0,30,0,0">
        <TextBlock Text="開発者とDevloperとデザイナーとDesigner - Default" />
    </StackPanel>
            
</StackPanel>

で、結果は以下のような感じ。
f:id:k_maru:20120201231159p:plain
どうやら、英語フォントは Segoe UI Light 、日本語フォントは Meiryo UI が使われるらしい。