blob: 39fb4549d5489dc236e7f0ccd7c12a9beff70624 (
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
37
38
39
40
41
|
<UserControl x:Class="Tango.FSE.PPCConsole.Views.MainView"
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:global="clr-namespace:Tango.FSE.PPCConsole"
xmlns:vm="clr-namespace:Tango.FSE.PPCConsole.ViewModels"
xmlns:local="clr-namespace:Tango.FSE.PPCConsole.Views"
xmlns:console="clr-namespace:Tango.Console;assembly=Tango.Console"
xmlns:material="http://materialdesigninxaml.net/winfx/xaml/themes"
mc:Ignorable="d"
d:DesignHeight="720" d:DesignWidth="1280" d:DataContext="{d:DesignInstance Type=vm:MainViewVM, IsDesignTimeCreatable=False}" DataContext="{x:Static global:ViewModelLocator.MainViewVM}">
<Grid Margin="10">
<Grid.RowDefinitions>
<RowDefinition Height="327*"/>
<RowDefinition Height="5"/>
<RowDefinition Height="50*"/>
</Grid.RowDefinitions>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="257*"/>
<ColumnDefinition Width="137*"/>
</Grid.ColumnDefinitions>
<!--CONSOLE-->
<Grid>
<local:ConsoleView Margin="5" />
</Grid>
<!--REMOTE DESKTOP-->
<Grid Grid.Column="1">
<local:RemoteDesktopView Margin="5" />
</Grid>
</Grid>
<!--SOMETHING OTHER ?-->
<Grid Grid.Row="2">
</Grid>
</Grid>
</UserControl>
|