我试图在 ViewBox 中居中放置一个数字,但结果非常令人沮丧。我尝试使用 TextAlignment、HorizontalAlignment、VerticalAlignment 等将其居中...当我让一个数字正确居中(例如,3)时,另一个数字偏离中心(例如,4):
如您所见,我使用以下内容:
<Border x:Name="bdrMain" Background="#FF0095E2">
<Grid>
<Viewbox Stretch="Uniform">
<Ellipse x:Name="elpRing" Stroke="White" Margin="1" StrokeThickness="0.75" Width="12" Height="12"/>
</Viewbox>
<Viewbox Stretch="Uniform">
<TextBlock x:Name="txtValue" FontFamily="Assets/Fonts/HelveticaNeueLTStd-Th.otf#HelveticaNeueLT Std Thin" Text="3" FontWeight="Thin"/>
</Viewbox>
</Grid>
</Border>
任何人都知道为什么居中如此困难???