34 lines
2.2 KiB
XML
34 lines
2.2 KiB
XML
<dx:DXWindow
|
|
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:dxre="http://schemas.devexpress.com/winfx/2008/xaml/richedit"
|
|
xmlns:tsWPF="clr-namespace:tsWPFCore;assembly=tsWPFCore"
|
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
|
|
xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol"
|
|
x:Class="dxwAgregarNuevoMunicipio"
|
|
Title="Nuevo CodigoPostal/Municipio" Height="230" Width="680" ShowInTaskbar="True" WindowStartupLocation="CenterScreen" WindowStyle="SingleBorderWindow" ShowIcon="False" ResizeMode="NoResize" >
|
|
<Grid>
|
|
<dxlc:LayoutControl Header="Header" Orientation="Vertical" UseLayoutRounding="True" View="GroupBox" >
|
|
<dxlc:LayoutGroup x:Name="lgTotalesClase" IsCollapsible="True" IsLocked="True" Height="Auto" HorizontalAlignment="Stretch" >
|
|
<dxlc:LayoutGroup Orientation="Vertical" >
|
|
<tsWPF:tsLayoutItem Label="Nuevo Código Postal:" FontWeight="Bold" HorizontalAlignment="Left" Width="300">
|
|
<dxe:TextEdit TabIndex="1" x:Name="teCodigoPostal" />
|
|
</tsWPF:tsLayoutItem>
|
|
<tsWPF:tsLayoutItem Label="Municipio:" FontWeight="Bold" HorizontalAlignment="Left" Width="500" >
|
|
<dxe:TextEdit TabIndex="1" x:Name="teMunicipio" IsEnabled="True" />
|
|
</tsWPF:tsLayoutItem>
|
|
<tsWPF:tsLayoutItem Label="Provincia:" FontWeight="Bold" HorizontalAlignment="Left" Width="500" >
|
|
<dxe:TextEdit TabIndex="1" x:Name="cbProvincia" IsEnabled="False" />
|
|
</tsWPF:tsLayoutItem>
|
|
</dxlc:LayoutGroup>
|
|
</dxlc:LayoutGroup>
|
|
<dxlc:LayoutGroup Height="35" Margin="0,30" >
|
|
<Button x:Name="btAceptar" Click="btAceptar_Click" Width="100" HorizontalAlignment="Left" >Aceptar</Button>
|
|
|
|
<Button x:Name="btCancelar" Click="btCancelar_Click" Margin="30,0,0,0" Width="100">Cancelar </Button>
|
|
</dxlc:LayoutGroup>
|
|
</dxlc:LayoutControl>
|
|
|
|
</Grid>
|
|
</dx:DXWindow> |