はここUWPのアプリケーションをサポートしているすべてのWindows 10のエディションで利用可能であることが保証されてlist of fontsで別のフォントを試してください:
public static string[] FontNames = {
"Arial", "Calibri", "Cambria", "Cambria Math", "Comic Sans MS", "Courier New",
"Ebrima", "Gadugi", "Georgia",
"Javanese Text Regular Fallback font for Javanese script", "Leelawadee UI",
"Lucida Console", "Malgun Gothic", "Microsoft Himalaya", "Microsoft JhengHei",
"Microsoft JhengHei UI", "Microsoft New Tai Lue", "Microsoft PhagsPa",
"Microsoft Tai Le", "Microsoft YaHei", "Microsoft YaHei UI",
"Microsoft Yi Baiti", "Mongolian Baiti", "MV Boli", "Myanmar Text",
"Nirmala UI", "Segoe MDL2 Assets", "Segoe Print", "Segoe UI", "Segoe UI Emoji",
"Segoe UI Historic", "Segoe UI Symbol", "SimSun", "Times New Roman",
"Trebuchet MS", "Verdana", "Webdings", "Wingdings", "Yu Gothic",
"Yu Gothic UI"
};
それがあるべきあなたの場合は、
<TextBox x:Name="textBox" TextWrapping="Wrap" Text="Test" PlaceholderText="Website" TextAlignment="DetectFromContent" FontSize="16" FontFamily="Segoe UI"/>
012あなたが他のフォントが必要な場合は
、リソースとして追加し、アプリケーションで使用
Using Custom Font
ありがとうございます、Segoe UI Lightが保証されたフォントから欠落しているとは思わなかった。 –
誰にでも助けがあれば、Segoe UI LightにFontWeight = "Light。 –
@LaurentResman cool!great idea – Sajeetharan