Caliburn Upgrade and FileManagerViewModel
[pithos-ms-client] / trunk / Pithos.OFM / FileManagerView.xaml
1 <Window x:Class="Pithos.OFM.FileManagerView"\r
2              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"\r
3              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"\r
4              xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" \r
5              xmlns:d="http://schemas.microsoft.com/expression/blend/2008"\r
6              xmlns:r="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary"\r
7              mc:Ignorable="d" \r
8             WindowStartupLocation="CenterScreen"\r
9              d:DesignHeight="600" d:DesignWidth="800"\r
10         Height="600" Width="800">\r
11     <Grid>\r
12         <Grid.RowDefinitions>\r
13             <RowDefinition Height="Auto"/>\r
14             <RowDefinition Height="*"/>\r
15         </Grid.RowDefinitions>\r
16         <Grid.ColumnDefinitions>\r
17             <ColumnDefinition Width="*"></ColumnDefinition>\r
18             <ColumnDefinition Width="50"></ColumnDefinition>\r
19             <ColumnDefinition Width="*"></ColumnDefinition>\r
20         </Grid.ColumnDefinitions>\r
21         <r:Ribbon Grid.Row="0" Grid.ColumnSpan="3" Title="Pithos+ OFM" x:Name="ribbon" Margin="0,-15,0,15" MinHeight="100" >\r
22             <r:RibbonTab Header="File"/>\r
23             <r:RibbonTab Header="Sync"/>\r
24             <r:RibbonTab Header="Accounts"/>\r
25         </r:Ribbon>\r
26         <ListBox Name="OriginPanel" Grid.Row="1" Grid.Column="0" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"></ListBox>\r
27         <ListBox Name="TargetPanel" Grid.Row="1" Grid.Column="2" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" ></ListBox>\r
28     </Grid>\r
29 </Window>\r