Files
egtbeamwall/EgtBEAMWALL.ViewerOptimizer/ProdProjManager/ProdProjManagerV.xaml
T
2024-05-15 16:38:48 +02:00

28 lines
1.1 KiB
XML

<TabControl x:Class="ProdProjManagerV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:EgtBEAMWALL="clr-namespace:EgtBEAMWALL.ViewerOptimizer"
DataContext="{StaticResource ProdProjManagerVM}"
SelectedIndex="{Binding SelProdProj}">
<TabControl.ItemContainerStyle>
<Style TargetType="{x:Type TabItem}">
<Setter Property="Visibility" Value="Collapsed"/>
</Style>
</TabControl.ItemContainerStyle>
<TabItem Header="NULL"/>
<TabItem Header="PROJ">
<EgtBEAMWALL:ProjWndV DataContext="{Binding ProjectVM}"
Tag="{Binding Tag, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:ProdProjManagerV}}}"/>
</TabItem>
<TabItem Header="PROD">
<EgtBEAMWALL:ProdWndV DataContext="{Binding ProjectVM}"
Tag="{Binding Tag, RelativeSource={RelativeSource AncestorType={x:Type EgtBEAMWALL:ProdProjManagerV}}}"/>
</TabItem>
</TabControl>