【发布时间】:2011-01-19 07:42:12
【问题描述】:
<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>
在上面的代码中,只有 TextBlock 会“继承”前景色和背景色。 Button 和 TextBox 不应该也有这些颜色吗?为什么他们没有? alt text http://img707.imageshack.us/img707/8014/5uslgmbzkbyurgwuwgqtzv2.png
【问题讨论】:
标签: c# .net wpf datacontext