Files
Emmanuele Sassi 9acbbab49e - introdotto BottomRail
- migliorie a grafica e CRM
2025-04-01 11:13:50 +02:00

39 lines
1.5 KiB
XML

<Window x:Class="MainWindowV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
xmlns:local="clr-namespace:EgtWindowMaker">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<TabControl Grid.Row="1"
SelectedIndex="{Binding SelPage}"
Style="{StaticResource TabControl.NoHeader}">
<TabItem Header="Home">
<local:HomePageV DataContext="{StaticResource HomePageVM}"/>
</TabItem>
<TabItem Header="CRM">
<local:CRMPageV DataContext="{StaticResource CRMPageVM}"/>
</TabItem>
<TabItem Header="Producing">
<local:ProducingPageV DataContext="{StaticResource ProducingPageVM}"/>
</TabItem>
<TabItem Header="WindowManager">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<local:ProjManagerV DataContext="{StaticResource ProjManagerVM}"/>
<local:ManageWindowV Grid.Row="1"
DataContext="{StaticResource ManageWindowVM}"/>
</Grid>
</TabItem>
</TabControl>
</Grid>
</Window>