2010-02-21 5 views
4
<Window x:Class="tests.MainWindow" 
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
     Title="MainWindow" Height="350" Width="525" Background="Red" Foreground="Cyan"> 
    <StackPanel VerticalAlignment="Center"> 
     <Button>123</Button> 
     <TextBlock>123</TextBlock> 
     <TextBox>123</TextBox> 
    </StackPanel> 
</Window> 

Dans le code ci-dessus, seul le TextBlock "héritera" à la fois des couleurs de premier plan et d'arrière-plan. Est-ce que Button et TextBox ne devraient pas avoir ces couleurs aussi? Pourquoi ne l'ont-ils pas? alt text http://img707.imageshack.us/img707/8014/5uslgmbzkbyurgwuwgqtzv2.pngPourquoi seuls certains éléments enfants auront leurs propriétés définies par leurs parents

Répondre

-1
<Button background="{Binding ElementName=stackPanel1,Path=Background}" .../> 
Questions connexes