56 lines
3.0 KiB
XML
56 lines
3.0 KiB
XML
<dx:DXWindow x:Class="dxwAsientosModelo"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
|
|
xmlns:dxb="http://schemas.devexpress.com/winfx/2008/xaml/bars"
|
|
xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol"
|
|
xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking"
|
|
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
|
|
xmlns:tsWPFCore="clr-namespace:tsWPFCore;assembly=tsWPFCore"
|
|
xmlns:dxgt="http://schemas.devexpress.com/winfx/2008/xaml/grid/themekeys"
|
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" ShowInTaskbar="True"
|
|
ShowIcon="False" Title="Seleccione" WindowStyle="ToolWindow" WindowState="Maximized" WindowStartupLocation="CenterScreen" Width="1366" Height="768">
|
|
<dx:DXWindow.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="pack://application:,,,/tsWPFCore;component/Plantillas.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</dx:DXWindow.Resources>
|
|
<Grid x:Name="grid">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="0*"/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="45" />
|
|
</Grid.RowDefinitions>
|
|
<tsWPFCore:tsGridControl x:Name="gc" Grid.Row="0" Grid.ColumnSpan="2" >
|
|
<dxg:GridControl.Columns>
|
|
<dxg:GridColumn FieldName="Codigo" Header="Código Asiento Modelo" Width="140" />
|
|
<dxg:GridColumn FieldName="Descripcion" Header ="Descripción" Width="600" />
|
|
</dxg:GridControl.Columns>
|
|
<dxg:GridControl.View>
|
|
<tsWPFCore:tsTableView x:Name="tv" ShowSearchPanelMode="Always" AllowEditing="False" />
|
|
</dxg:GridControl.View>
|
|
</tsWPFCore:tsGridControl>
|
|
<Grid Grid.Row="1" Grid.ColumnSpan="2">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="10" />
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="10" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="50" />
|
|
<ColumnDefinition Width="100" />
|
|
<ColumnDefinition Width="50" />
|
|
<ColumnDefinition Width="100" />
|
|
</Grid.ColumnDefinitions>
|
|
<Button Grid.Column="1" x:Name="btAceptar" Grid.Row="1" Width="100" IsDefault="True" Click="btAceptar_Click" TabIndex="0">Aceptar</Button>
|
|
<Button Grid.Column="3" x:Name="btCancelar" Grid.Row="1" Width="100" IsCancel="True" Click="btCancelar_Click" TabIndex="1">Cancelar</Button>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
|
|
</dx:DXWindow> |