summaryrefslogtreecommitdiffstats
path: root/win/C#/HandBrakeWPF/Views/MainView.xaml
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-02-19 17:28:58 +0000
committersr55 <[email protected]>2011-02-19 17:28:58 +0000
commit0b8918fb48eca14c002657942b199b706fc8959d (patch)
tree50c42fa57adf8a92e6d5e13a925353687010ea4c /win/C#/HandBrakeWPF/Views/MainView.xaml
parentda4025b6af1d0f5550159b87bf6a14c025752107 (diff)
WinGui:
- Setting up the structure of the WPF UI. Just empty files with some basic wiring up between them. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3800 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrakeWPF/Views/MainView.xaml')
-rw-r--r--win/C#/HandBrakeWPF/Views/MainView.xaml27
1 files changed, 12 insertions, 15 deletions
diff --git a/win/C#/HandBrakeWPF/Views/MainView.xaml b/win/C#/HandBrakeWPF/Views/MainView.xaml
index ea4d41ad2..56edca62e 100644
--- a/win/C#/HandBrakeWPF/Views/MainView.xaml
+++ b/win/C#/HandBrakeWPF/Views/MainView.xaml
@@ -1,6 +1,10 @@
<Window x:Class="HandBrakeWPF.Views.MainView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:PresentationFramework="clr-namespace:Caliburn.PresentationFramework;assembly=Caliburn.PresentationFramework" Title="{Binding Path=WindowTitle}" Height="655" Width="1015" FontSize="11">
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+ xmlns:PresentationFramework="clr-namespace:Caliburn.PresentationFramework;assembly=Caliburn.PresentationFramework"
+ xmlns:Views="clr-namespace:HandBrakeWPF.Views"
+ xmlns:Data="clr-namespace:System.Windows.Data;assembly=PresentationFramework"
+ Title="{Data:Binding Path=WindowTitle}" Height="655" Width="1015" FontSize="11">
<Grid>
<StackPanel Orientation="Vertical" VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
@@ -140,22 +144,22 @@
<!-- Tab Control -->
<TabControl HorizontalAlignment="Left" VerticalAlignment="Stretch" Width="725" Height="330" Margin="10,10,10,10" Name="tabControl" >
<TabItem Header="Picture" Name="pictureTab">
- <Grid />
+ <Views:PictureSettingsView></Views:PictureSettingsView>
</TabItem>
<TabItem Header="Video Filters" Name="filtersTab">
- <Grid />
+ <Views:FiltersView></Views:FiltersView>
</TabItem>
<TabItem Header="Video" Name="videoTab">
- <Grid />
+ <Views:VideoView></Views:VideoView>
</TabItem>
<TabItem Header="Audio" Name="audioTab">
- <Grid />
+ <Views:AudioView></Views:AudioView>
</TabItem>
<TabItem Header="Chapters" Name="chaptersTab">
- <Grid />
+ <Views:ChaptersView></Views:ChaptersView>
</TabItem>
<TabItem Header="Advanced" Name="advancedTab">
- <Grid />
+ <Views:AdvancedView></Views:AdvancedView>
</TabItem>
</TabControl>
@@ -178,8 +182,7 @@
</GroupBox>
</StackPanel>
- </StackPanel>
-
+ </StackPanel>
<!-- Status Bar -->
<StatusBar Grid.Row="6" Height="30" Grid.ColumnSpan="2" VerticalAlignment="Bottom">
@@ -187,11 +190,5 @@
</StatusBar>
</StackPanel>
-
-
-
-
-
-
</Grid>
</Window>