46 lines
3.7 KiB
XML
46 lines
3.7 KiB
XML
<Window x:Class="AiwazAnimator.AddAnimationWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Add animation" Height="260" Width="350" WindowStartupLocation="CenterScreen">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="130" />
|
|
<ColumnDefinition Width="60" />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="29" />
|
|
<RowDefinition Height="29" />
|
|
<RowDefinition Height="29" />
|
|
<RowDefinition Height="29" />
|
|
<RowDefinition Height="29" />
|
|
<RowDefinition Height="29" />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Label Grid.Row="0" Content="Start time:" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
|
|
<Label Grid.Row="1" Content="End time:" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
|
|
<Label Grid.Row="2" Content="Start value:" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
|
|
<Label Grid.Row="3" Content="End value:" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
|
|
<Label Grid.Row="4" Content="Interpolation type:" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
|
|
<Label Grid.Row="5" Content="Target field:" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
|
|
<StackPanel Grid.Column="1" Grid.Row="6" Grid.ColumnSpan="2" Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Bottom" Height="35">
|
|
<Button Content="Add" Margin="5" Width="50" TabIndex="7" Click="Button_Click"></Button>
|
|
</StackPanel>
|
|
<ComboBox Grid.Column="1" Grid.Row="4" Grid.ColumnSpan="2" Height="23" HorizontalAlignment="Stretch" Margin="3" Name="cmbInterpolation" VerticalAlignment="Top" TabIndex="5" SelectedIndex="0">
|
|
<ComboBoxItem Content="Linear" />
|
|
<ComboBoxItem Content="Cosine" />
|
|
</ComboBox>
|
|
<ComboBox Grid.Column="1" Grid.Row="5" Grid.ColumnSpan="2" Height="23" HorizontalAlignment="Stretch" Margin="3" Name="cmbTarget" VerticalAlignment="Top" TabIndex="6" />
|
|
<TextBox Grid.Column="1" Grid.Row="0" Height="23" HorizontalAlignment="Stretch" Margin="3" Name="txtStartTime" VerticalAlignment="Top" TabIndex="1" Text="" />
|
|
<TextBox Grid.Column="1" Grid.Row="1" Height="23" HorizontalAlignment="Stretch" Margin="3" Name="txtEndTime" VerticalAlignment="Top" TabIndex="2" />
|
|
<TextBox Grid.Column="1" Grid.Row="2" Height="23" HorizontalAlignment="Stretch" Margin="3" Name="txtStartValue" VerticalAlignment="Top" TabIndex="3" />
|
|
<TextBox Grid.Column="1" Grid.Row="3" Height="23" HorizontalAlignment="Stretch" Margin="3" Name="txtEndValue" VerticalAlignment="Top" TabIndex="4" />
|
|
|
|
<Label Grid.Row="0" Grid.Column="2" Content="(in seconds)" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" FontStyle="Italic" Foreground="DarkGray" />
|
|
<Label Grid.Row="1" Grid.Column="2" Content="(in seconds)" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" FontStyle="Italic" Foreground="DarkGray" />
|
|
<Label Grid.Row="2" Grid.Column="2" Content="(between 0 and 1)" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" FontStyle="Italic" Foreground="DarkGray" />
|
|
<Label Grid.Row="3" Grid.Column="2" Content="(between 0 and 1)" Height="28" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" FontStyle="Italic" Foreground="DarkGray" />
|
|
|
|
</Grid>
|
|
</Window>
|