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

时间:2013-02-27 18:28:30

标签: c# wpf wpf-controls

我正在尝试设置FontSize - 其他东西 - 在UserControl中的某些控件上设置为UserControl级别的FontSize。这不起作用:

<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>

我做错了什么?感谢。

1 个答案:

答案 0 :(得分:3)

认为这应该有用..

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