Fully qualify Microsoft.UI.Text.FontWeights

This commit is contained in:
Arlo Godfrey 2024-08-08 18:21:51 -05:00
Родитель 622a1a8b17
Коммит da4c61e065
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -52,7 +52,7 @@ internal class MyEmphasisInline : IAddChild
public void SetBold()
{
#if WINUI3
_span.FontWeight = FontWeights.Bold;
_span.FontWeight = Microsoft.UI.Text.FontWeights.Bold;
#elif WINUI2
_span.FontWeight = Windows.UI.Text.FontWeights.Bold;
#endif