7
我想將樣式應用於派生自Control的所有類。這可能與WPF? 以下示例不起作用。我希望標籤,文本框和按鈕的邊距爲4.將樣式應用於WPF中的所有派生類
<Window x:Class="WeatherInfo.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Wetterbericht" Height="300" Width="300">
<Window.Resources>
<Style TargetType="Control">
<Setter Property="Margin" Value="4"/>
</Style>
</Window.Resources>
<Grid>
<StackPanel Margin="4" HorizontalAlignment="Left">
<Label>Zipcode</Label>
<TextBox Name="Zipcode"></TextBox>
<Button>get weather info</Button>
</StackPanel>
</Grid>
</Window>
的作品就像一個魅力...謝謝你。 – Sebastian 2009-10-20 10:07:49