Ok, so I am trying to make a global change in one of my programs via XAML
. The first change I made was to the Font Family
which seemed to work fine, I just put something like:
<Windows
FontFamily = "Calibri"
</Window >
When I went to implement the same process for all of my FontSizes of my TextBoxes and Labels I tried:
<Windows
FontFamily = "Calibri"
FontSize = "18"
</Window >
Everything seemed to work fine, but when I went to click that specific element on the XAML and then clicked Text and looked at the Font Size it actually said 13.5pt. What is going on exactly here? Shouldn't it say 18?