web-dev-qa-db-ja.com

UBWPのTextBlock Backgroundプロパティはどこにありますか?

UWPでTextBlockの背景を変更する必要がありますが、Backgroundプロパティは存在しません。これに対する解決策は何ですか?

これは動作しません...

                    <TextBlock Text="Exceptions Log"
                               FontSize="10"
                               Background="Red" // This is invalid
                               />

ありがとう

20
Ian GM

グリッドやボーダーなどに配置してください...

<Border Background="Red">
    <TextBlock Text="Exceptions Log"
               FontSize="10" />
</Border>
33
Igor Ralic