8,707
社区成员




ForegroundProperty = TextElement.ForegroundProperty.AddOwner(typeof(Control), new FrameworkPropertyMetadata(SystemColors.ControlTextBrush, FrameworkPropertyMetadataOptions.Inherits));
ForegroundProperty = TextElement.ForegroundProperty.AddOwner(typeof(TextBlock));
<StackPanel TextBlock.Foreground="Red" TextBlock.FontSize="24">
<TextBlock>Just A TextBlock</TextBlock>
<Button Foreground="Red">Just A Button</Button>
</StackPanel>