|
| 1 | +<Window x:Class="LoadRetimer.MainWindow" |
| 2 | + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| 3 | + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 4 | + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| 5 | + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| 6 | + xmlns:local="clr-namespace:LoadRetimer" |
| 7 | + xmlns:ffme="clr-namespace:Unosquare.FFME;assembly=ffme.win" |
| 8 | + mc:Ignorable="d" |
| 9 | + Icon="/Icon.ico" |
| 10 | + Title="Load Retimer" Height="450" Width="1000" PreviewKeyDown="Window_KeyDown" MinHeight="300" MinWidth="900" SizeChanged="Window_SizeChanged"> |
| 11 | + <Grid MouseDown="Video_MouseDown"> |
| 12 | + <Grid.RowDefinitions> |
| 13 | + <RowDefinition Height="Auto" /> |
| 14 | + <RowDefinition Height="2*" /> |
| 15 | + <RowDefinition Height="3*" /> |
| 16 | + <RowDefinition Height="Auto" /> |
| 17 | + <RowDefinition Height="40" /> |
| 18 | + </Grid.RowDefinitions> |
| 19 | + <Grid.ColumnDefinitions> |
| 20 | + <ColumnDefinition Width="8*" /> |
| 21 | + <ColumnDefinition Width="2*" /> |
| 22 | + <ColumnDefinition Width="3*" /> |
| 23 | + </Grid.ColumnDefinitions> |
| 24 | + <Menu Grid.Row="0" Grid.ColumnSpan="3"> |
| 25 | + <MenuItem Header="_File"> |
| 26 | + <MenuItem Header="_Open Video" Click="OpenFile_Click" /> |
| 27 | + <MenuItem Header="_Open Loads" Click="OpenLoads_Click" /> |
| 28 | + <MenuItem Header="_Save Loads" Click="SaveLoads_Click" /> |
| 29 | + <MenuItem Header="_Info" Click="Info_Click" /> |
| 30 | + </MenuItem> |
| 31 | + </Menu> |
| 32 | + <Label Content="No video loaded." Grid.Row="1" Grid.Column="0" Grid.RowSpan="2" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/> |
| 33 | + <ffme:MediaElement Grid.Row="1" Grid.Column="0" Grid.RowSpan="2" LoadedBehavior="Pause" x:Name="Video" MediaOpened="Video_MediaOpened"/> |
| 34 | + <Rectangle x:Name="Rect" Grid.Row="1" Grid.RowSpan="2" HorizontalAlignment="Left" VerticalAlignment="Top" Fill="#20000000" /> |
| 35 | + |
| 36 | + <Rectangle Grid.Row="1" Grid.Column="1"> |
| 37 | + <Rectangle.Fill> |
| 38 | + <VisualBrush x:Name="Magnifier" Visual="{Binding ., ElementName=Video}" Stretch="Uniform" Viewbox="0, 0, 533, 352" ViewboxUnits="Absolute" Viewport="0, 0, 1, 1" ViewportUnits="RelativeToBoundingBox" /> |
| 39 | + </Rectangle.Fill> |
| 40 | + <Rectangle.Effect> |
| 41 | + <local:BrightnessEffect /> |
| 42 | + </Rectangle.Effect> |
| 43 | + </Rectangle> |
| 44 | + <StackPanel Name="VideoInfo" Grid.Row="2" Grid.Column="1"> |
| 45 | + <Label Content="Video info" FontWeight="Bold" /> |
| 46 | + <Label x:Name="FPSLabel" Content="FPS:" /> |
| 47 | + <Label x:Name="DurationLabel" Content="Duration:" /> |
| 48 | + </StackPanel> |
| 49 | + |
| 50 | + <Grid Grid.Row="1" Grid.Column="2"> |
| 51 | + <Grid.RowDefinitions> |
| 52 | + <RowDefinition Height="1*" /> |
| 53 | + <RowDefinition Height="Auto" /> |
| 54 | + </Grid.RowDefinitions> |
| 55 | + <Grid.ColumnDefinitions> |
| 56 | + <ColumnDefinition Width="1*" /> |
| 57 | + <ColumnDefinition Width="1*" /> |
| 58 | + </Grid.ColumnDefinitions> |
| 59 | + <local:LoadInfo Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" x:Name="TotalRunInfo"/> |
| 60 | + <Button Grid.Row="1" Grid.Column="0" Content="Start Run" Click="StartRun_Click" /> |
| 61 | + <Button Grid.Row="1" Grid.Column="1" Content="End Run" Click="EndRun_Click" /> |
| 62 | + </Grid> |
| 63 | + |
| 64 | + <ListBox Grid.Row="2" Grid.Column="2" Grid.RowSpan="2" x:Name="LoadBox" HorizontalContentAlignment="Stretch" /> |
| 65 | + <Grid Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="2"> |
| 66 | + <Grid.ColumnDefinitions> |
| 67 | + <ColumnDefinition Width="1*" /> |
| 68 | + <ColumnDefinition Width="1*" /> |
| 69 | + <ColumnDefinition Width="1*" /> |
| 70 | + <ColumnDefinition Width="2*" /> |
| 71 | + <ColumnDefinition Width="2*" /> |
| 72 | + </Grid.ColumnDefinitions> |
| 73 | + <Button Grid.Column="0" Content="-1 frame" Click="FrameBack_Click" /> |
| 74 | + <Button Grid.Column="1" x:Name="PlayPause" Content="Play" Click="ButtonPlayPause_Click" /> |
| 75 | + <Button Grid.Column="2" Content="+1 frame" Click="FrameForward_Click" /> |
| 76 | + <Button Grid.Column="3" Content="Begin Load" Click="BeginLoad_Click" /> |
| 77 | + <Button Grid.Column="4" Content="End Load" Click="EndLoad_Click" /> |
| 78 | + </Grid> |
| 79 | + <Slider Grid.Row="3" HorizontalAlignment="Stretch" VerticalAlignment="Center" x:Name="Slider" Thumb.DragStarted="Slider_DragStarted" Thumb.DragCompleted="Slider_DragCompleted" ValueChanged="Slider_ValueChanged" Maximum="1000" LargeChange="0" SmallChange="0"/> |
| 80 | + <Label x:Name="TimePosition" Grid.Row="3" Grid.Column="1" Content="00:00.000" HorizontalAlignment="Center" VerticalAlignment="Center" FontFamily="Courier New" /> |
| 81 | + <Button Grid.Row="4" Grid.Column="2" Content="Retime!" Click="Retime_Click" /> |
| 82 | + </Grid> |
| 83 | +</Window> |
0 commit comments