2010-01-21 5 views
1

툴팁의 글꼴 크기를 부모 폼과 동일한 크기로 설정하는 스타일을 선언 할 수 있습니까? 나는 이것을 시도했다 ...부모 윈도우의 속성에 스타일로 데이터 바인딩

<Style TargetType="{x:Type ToolTip}"> 
     <Setter Property="FontSize" Value="{Binding ElementName=MainWindow, Path=FontSize}"/> 
    </Style> 

...하지만 그것은 작동하지 않습니다. 어떤 제안?

답변

3

문제점에 대한 해결책을 찾았습니다.

<Style TargetType="{x:Type ToolTip}"> 
     <Setter Property="FontSize" Value="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}, Path=FontSize}"/> 
    </Style>