aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/JobRuns/JobRunAvailableEventArgs.cs
blob: b3b39109aefb0e53d827dfa2c0dde7d4f096f762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;

namespace Tango.Integration.JobRuns
{
    public class JobRunAvailableEventArgs : EventArgs
    {
        public JobRunInfo JobRunInfo { get; set; }
        public JobRun JobRun { get; set; }

        public JobRunAvailableEventArgs()
        {
            JobRunInfo = new JobRunInfo();
        }
    }
}
ot;{d:DesignInstance Type=vm:UserCreationDialogVM, IsDesignTimeCreatable=False}"> <Grid Margin="10"> <DockPanel> <Grid DockPanel.Dock="Top"> <StackPanel Orientation="Horizontal"> <Grid> <Image Source="../Images/login.png" Width="80" RenderOptions.BitmapScalingMode="Fant"></Image> <materialDesign:PackIcon HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0 0 -14 -10" Kind="PlusCircle" Foreground="#15C315" Width="42" Height="42" /> </Grid> <TextBlock Margin="30 0 0 0" VerticalAlignment="Bottom" FontSize="22">NEW USER</TextBlock> </StackPanel> </Grid> <Grid DockPanel.Dock="Bottom"> <StackPanel Orientation="Horizontal" VerticalAlignment="Bottom" HorizontalAlignment="Right" DockPanel.Dock="Bottom"> <Button Command="{Binding CloseCommand}" Width="140" Height="40" Margin="0 0 10 0"> CANCEL </Button> <Button Command="{Binding OKCommand}" IsDefault="True" Width="140" Height="40"> CREATE </Button> </StackPanel> </Grid> <Grid> <StackPanel Width="400" HorizontalAlignment="Center" Margin="20"> <controls:TableGrid RowHeight="40"> <TextBlock>EMAIL</TextBlock> <TextBox Text="{Binding Email,UpdateSourceTrigger=LostFocus,NotifyOnValidationError=True,ValidatesOnDataErrors=True,ValidatesOnNotifyDataErrors=True}"></TextBox> <TextBlock>FIRST NAME</TextBlock> <TextBox Text="{Binding FirstName,UpdateSourceTrigger=LostFocus,NotifyOnValidationError=True,ValidatesOnDataErrors=True,ValidatesOnNotifyDataErrors=True}"></TextBox> <TextBlock>LAST NAME</TextBlock> <TextBox Text="{Binding LastName,UpdateSourceTrigger=LostFocus,NotifyOnValidationError=True,ValidatesOnDataErrors=True,ValidatesOnNotifyDataErrors=True}"></TextBox> </controls:TableGrid> <TextBox Margin="0 -15 0 0" Style="{x:Null}" BorderThickness="0" FontSize="30" HorizontalAlignment="Center" Text="{Binding Password}" IsReadOnly="True"></TextBox> <TextBlock HorizontalAlignment="Center" Margin="0 5 0 0" Foreground="{StaticResource GrayBrush}">Provide this password to the user</TextBlock> </StackPanel> </Grid> </DockPanel> </Grid> </UserControl>