Agregar archivos de proyecto.
This commit is contained in:
70
GestionGrupoSanchoToro/ucGrupoUsuarios.xaml
Normal file
70
GestionGrupoSanchoToro/ucGrupoUsuarios.xaml
Normal file
@@ -0,0 +1,70 @@
|
||||
<tsWPF:tsUserControl x:Class="ucGrupoUsuarios"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:dxb="http://schemas.devexpress.com/winfx/2008/xaml/bars"
|
||||
mc:Ignorable="d" 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:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
|
||||
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core" xmlns:tsWPF="clr-namespace:tsWPFCore;assembly=tsWPFCore" d:DesignHeight="768" d:DesignWidth="1366">
|
||||
<UserControl.Resources>
|
||||
<ResourceDictionary>
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="pack://application:,,,/tsWPFCore;component/Plantillas.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
<Style x:Key="RejillaAnidadaStyle" TargetType="{x:Type dxg:RowControl}">
|
||||
<Setter Property="Background" Value="#B0E0E6" />
|
||||
</Style>
|
||||
</ResourceDictionary>
|
||||
</UserControl.Resources>
|
||||
<Grid Name="contenido" HorizontalAlignment="Stretch" Width="Auto">
|
||||
<dxlc:LayoutControl Name="LayoutControl1" Orientation="Vertical">
|
||||
<dxlc:LayoutGroup Header="Detalle" Name="lgDetalle" View="GroupBox" ItemLabelsAlignment="Default" IsLocked="True" Orientation="Vertical" Width="Auto" HorizontalAlignment="Stretch">
|
||||
<dxlc:LayoutGroup Orientation="Vertical" HorizontalAlignment="Left">
|
||||
<dxlc:LayoutGroup >
|
||||
<tsWPF:tsLayoutItem Label="Descripción:" HorizontalAlignment="Left" Width="400" >
|
||||
<tsWPF:tsLayoutItem.PropiedadesTS>
|
||||
<tsWPF:PropiedadesTS Obligatorio="True" Unico="True" />
|
||||
</tsWPF:tsLayoutItem.PropiedadesTS>
|
||||
<dxe:TextEdit Name="TextEdit2" EditValue="{Binding Path=Descripcion, Mode=TwoWay, ValidatesOnExceptions=true, NotifyOnValidationError=true, NotifyOnSourceUpdated=True}" TabIndex="1" />
|
||||
</tsWPF:tsLayoutItem>
|
||||
<tsWPF:tsLayoutItem Label="Grupo Menú:" HorizontalAlignment="Left" Width="300" >
|
||||
<tsWPF:tsLayoutItem.PropiedadesTS>
|
||||
<tsWPF:PropiedadesTS Obligatorio="True"/>
|
||||
</tsWPF:tsLayoutItem.PropiedadesTS>
|
||||
<dxe:ComboBoxEdit EditValue="{Binding Path=idGrupoMenu, Mode=TwoWay, ValidatesOnExceptions=true, NotifyOnValidationError=true, NotifyOnSourceUpdated=True}" Name="cbGrupoMenu" DisplayMember="Descripcion" ValueMember="idGruposMenus" AutoComplete="True" IncrementalFiltering="True" ImmediatePopup="True" TabIndex="2" ></dxe:ComboBoxEdit>
|
||||
<!--<dxe:TextEdit EditValue="{Binding Path=idTipoDocumentoIdentidad, Mode=TwoWay, ValidatesOnExceptions=true, NotifyOnValidationError=true, NotifyOnSourceUpdated=True}" TabIndex="3" />-->
|
||||
</tsWPF:tsLayoutItem>
|
||||
|
||||
</dxlc:LayoutGroup>
|
||||
<dxlc:LayoutGroup Width="Auto"></dxlc:LayoutGroup>
|
||||
</dxlc:LayoutGroup>
|
||||
</dxlc:LayoutGroup>
|
||||
<dxlc:LayoutGroup>
|
||||
<Grid HorizontalAlignment="Stretch" MinHeight="150" Height="Auto" Visibility="Visible" Width="Auto">
|
||||
<dx:DXTabControl Name="DXTabControl1" Width="Auto" HorizontalAlignment="Stretch">
|
||||
<dx:DXTabItem Header="Usuarios" Name="tiUsuarios" TabIndex="4">
|
||||
<tsWPF:tsGridControl AutoPopulateColumns="False" Name="gcusuarios" NombreTablaBase="Usurios" TabIndex="3">
|
||||
<tsWPF:tsGridControl.PropiedadesTSGC>
|
||||
<tsWPF:PropiedadesTSGC />
|
||||
</tsWPF:tsGridControl.PropiedadesTSGC>
|
||||
<tsWPF:tsGridControl.PropiedadesTS>
|
||||
<tsWPF:PropiedadesTS UsualCorreccion="False" Modificable="NoModificable" />
|
||||
</tsWPF:tsGridControl.PropiedadesTS>
|
||||
<dxg:GridControl.Columns>
|
||||
<dxg:GridColumn FieldName="Usuario" Header="Código Usuario"/>
|
||||
<dxg:GridColumn FieldName="Nombre" Header="Nombre" Width="400"/>
|
||||
</dxg:GridControl.Columns>
|
||||
<tsWPF:tsGridControl.View>
|
||||
<tsWPF:tsTableView ShowGroupPanel="False"/>
|
||||
</tsWPF:tsGridControl.View>
|
||||
</tsWPF:tsGridControl>
|
||||
</dx:DXTabItem>
|
||||
</dx:DXTabControl>
|
||||
</Grid>
|
||||
</dxlc:LayoutGroup>
|
||||
</dxlc:LayoutControl>
|
||||
</Grid>
|
||||
</tsWPF:tsUserControl>
|
||||
Reference in New Issue
Block a user