blob: 6309234e8c56df3be2edd9586b5ef188eda6f45e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<UserControl x:Class="MaterialDesignDemo.TransitionsDemo.Slide2_Intro"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<materialDesign:ColorZone Mode="PrimaryLight" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" VerticalContentAlignment="Stretch">
<Grid VerticalAlignment="Center" HorizontalAlignment="Center"
MaxWidth="600">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock HorizontalAlignment="Stretch" VerticalAlignment="Center" Margin="32"
Style="{DynamicResource MaterialDesignHeadlineTextBlock}"
TextWrapping="Wrap">
The transition will originate from where the user clicks the button. Experiment with the back/forward buttons.
</TextBlock>
<Button Style="{DynamicResource MaterialDesignFloatingActionMiniButton}"
Command="{x:Static materialDesign:Transitioner.MovePreviousCommand}"
HorizontalAlignment="Left"
Grid.Row="1">
<materialDesign:PackIcon Kind="StepBackward" />
</Button>
<Button Style="{DynamicResource MaterialDesignFloatingActionAccentButton}"
Command="{x:Static materialDesign:Transitioner.MoveNextCommand}"
HorizontalAlignment="Right"
Grid.Row="1"
>
<materialDesign:PackIcon Kind="StepForward" />
</Button>
</Grid>
</materialDesign:ColorZone>
</UserControl>
|