在WPF UserControl中,将子控件上的FontSize设置为UserControl的FontSize

lrl1mhuk  于 2023-10-22  发布在  其他
关注(0)|答案(2)|浏览(177)

我试图设置字体大小--除了其他的东西--在一个用户控件中的一些控件上设置为用户控件级别的字体大小。这不起作用:

<UserControl x:Class="TestWpfApplication1.Scratch.UserControlFontSizeProp"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
   <Grid>
       <TextBlock 
        FontSize="{Binding RelativeSource={RelativeSource self},Path=FontSize}">
           Text
       </TextBlock>
   </Grid>
</UserControl>

我做错了什么?谢谢.

6ss1mwsb

6ss1mwsb1#

我想这应该行得通。

<TextBlock FontSize="{Binding RelativeSource={RelativeSource AncestorType=UserControl},Path=FontSize}" />
0vvn1miw

0vvn1miw2#

我用

FontSize="{Binding Parent.Parent.FontSize, RelativeSource={RelativeSource Self}}"

相关问题