Code Snippet
- <Grid x:Name="LayoutRoot"
- Background="White">
- <Grid.RowDefinitions>
- <RowDefinition />
- <RowDefinition Height="Auto" />
- </Grid.RowDefinitions>
- <Grid.Resources>
- <Style x:Key="VariableFontTextBlockStyle"
- TargetType="TextBlock">
- <Setter Property="Foreground" Value="DarkOrange" />
- <Setter Property="FontWeight" Value="Bold" />
- <Setter Property="FontSize" Value="{Binding ElementName=FontSizeSlider, Path=Value}" />
- </Style>
- </Grid.Resources>
- <TextBlock x:Name="SampleTextBlock"
- Grid.Row="0"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Style="{StaticResource VariableFontTextBlockStyle}"
- Text="No Mr Bond - I expect you to die" />
- <Slider x:Name="FontSizeSlider"
- Grid.Row="1"
- MaxWidth="500"
- Margin="100,30"
- Maximum="64"
- Minimum="8"
- Value="12" />
- </Grid>
No comments:
Post a Comment