Files
SanchoToro/GestionGrupoSanchoToro/dxwInicio.xaml
2026-01-23 12:45:41 +01:00

43 lines
2.5 KiB
XML

<dx:DXWindow
x:Class="dxwInicio"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking"
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
xmlns:dxa="http://schemas.devexpress.com/winfx/2008/xaml/accordion"
Title="GrupoSanchoToro" Height="356" Width="570" xmlns:dxb="http://schemas.devexpress.com/winfx/2008/xaml/bars" WindowState="Maximized" xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" >
<dxdo:DockLayoutManager Name="DockLayoutManager1" MDIMergeStyle="Never" >
<dxdo:DockLayoutManager.LayoutRoot>
<dxdo:LayoutGroup Caption="LayoutRoot">
<dxdo:LayoutPanel Caption="Navegación" ItemWidth="220" MaxWidth="300" AllowClose="False" >
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="260"/>
</Grid.RowDefinitions>
<dxa:AccordionControl ShowSearchControl="True" x:Name="PanelNavegacion" CustomItemFilter="PanelNavegacion_CustomItemFilter" >
</dxa:AccordionControl>
<StackPanel Grid.Row="1" VerticalAlignment="Bottom" >
<Image Stretch="UniformToFill" x:Name="imgLogo" Source="/Resources/LogoTcsColor.png" />
<TextBlock x:Name="tbVersion" Margin="10">Versión:</TextBlock>
</StackPanel>
</Grid>
</dxdo:LayoutPanel>
<dxdo:DocumentGroup x:Name="grupodoc" SelectedTabIndex="0" MDIStyle="Default" AllowClose="False" DestroyOnClosingChildren="False" >
<!--<dxdo:DocumentGroup.Background>
<ImageBrush Stretch="Uniform" x:Name="imgFondo" />
</dxdo:DocumentGroup.Background>-->
<dxdo:DocumentGroup.Appearance>
<dxdo:Appearance>
<dxdo:Appearance.Active>
<dxdo:AppearanceObject></dxdo:AppearanceObject>
</dxdo:Appearance.Active>
</dxdo:Appearance>
</dxdo:DocumentGroup.Appearance>
</dxdo:DocumentGroup>
</dxdo:LayoutGroup>
</dxdo:DockLayoutManager.LayoutRoot>
</dxdo:DockLayoutManager>
</dx:DXWindow>