1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
<UserControl x:Class="EuromasterMigration.UserControl_Migration1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="700" Width="1024" IsVisibleChanged="UserControl_IsVisibleChanged">
<UserControl.Background>
<LinearGradientBrush EndPoint="0.5,0.977" StartPoint="0.5,0.023">
<GradientStop Color="#FF001B35" Offset="0"/>
<GradientStop Color="#FF6EB6FF" Offset="1"/>
</LinearGradientBrush>
</UserControl.Background>
<Grid Height="Auto" >
<Grid.RowDefinitions>
<RowDefinition Name="RowLabel" Height="30" />
<RowDefinition Height="630*" />
<RowDefinition Name="RowBouton" Height="40" />
</Grid.RowDefinitions>
<Label Margin="0,0,0,0" Name="label_Titre" Visibility="Visible" ClipToBounds="True" Background="SlateBlue">Ecran de migration n°1/5 </Label>
<Button Grid.Row="2" HorizontalAlignment="Right" Margin="0,11,12,6" Name="button_Next" Width="75" Click="button_Next_Click">Next</Button>
<TextBox BorderBrush="Blue" FontSize="18" Height="31" HorizontalAlignment="Center" Margin="12,17,0,0" Name="Textbox_SendMail" VerticalAlignment="Top" Width="410" Grid.Row="1" HorizontalContentAlignment="Center" IsReadOnly="True">Send mail to notify users to be migrated</TextBox>
<TextBox BorderBrush="Blue" FontSize="14" Height="31" HorizontalAlignment="Left" Margin="12,102,0,0" Name="textBox_Domain" VerticalAlignment="Top" Width="274" Grid.Row="1" IsReadOnly="True">Domain</TextBox>
<ComboBox BorderBrush="Blue" Height="31" HorizontalAlignment="Left" Margin="302,102,0,0" Name="Combobox_DomainChoice" Text="Fr" VerticalAlignment="Top" Width="120" Grid.Row="1" IsReadOnly="True" SelectionChanged="Combobox_DomainChoice_SelectionChanged">
<ComboBoxItem FontSize="14" IsSelected="True" Name="Fr">Fr</ComboBoxItem>
<ComboBoxItem FontSize="14" Name="ESM">ESM</ComboBoxItem>
<ComboBoxItem FontSize="14" Name="UK">UK</ComboBoxItem>
</ComboBox>
<TextBox BorderBrush="Blue" FontSize="14" Height="29" HorizontalAlignment="Left" Margin="12,139,0,0" Name="TextBox_UploadList" VerticalAlignment="Top" Width="126" Grid.Row="1" IsReadOnly="True">Upload List Users</TextBox>
<TextBox BorderBrush="Blue" FontSize="14" Height="29" Margin="144,139,433,0" Name="textBox_ValueListUser" RenderTransformOrigin="2,2" VerticalAlignment="Top" Grid.Row="1" IsReadOnly="True"></TextBox>
<TextBox BorderBrush="Blue" FontSize="14" Height="29" HorizontalAlignment="Left" Margin="12,174,0,0" Name="textBox_CC" VerticalAlignment="Top" Width="44" Grid.Row="1" IsReadOnly="True">CC :</TextBox>
<TextBox BorderBrush="Blue" FontSize="14" Height="29" HorizontalAlignment="Left" Margin="12,209,0,0" Name="textBox_BCC" VerticalAlignment="Top" Width="44" Grid.Row="1" IsReadOnly="True">BCC :</TextBox>
<TextBox BorderBrush="Blue" FontSize="14" HorizontalAlignment="Left" Margin="12,253,0,0" Name="textBox_UploadAttachement" Width="145" Grid.Row="1" IsReadOnly="True" Height="29" VerticalAlignment="Top">Upload Attachements</TextBox>
<TextBox BorderBrush="Blue" FontSize="14" Margin="163,253,429,0" Name="textBox_ListAttachements" RenderTransformOrigin="2,2" Grid.Row="1" Height="29" VerticalAlignment="Top"></TextBox>
<Button Margin="0,254,293,0" Name="button_UploadAttachements" Grid.Row="1" Click="button_UploadAttachements_Click" Height="28" VerticalAlignment="Top" HorizontalAlignment="Right" Width="130">Upload</Button>
<Button Grid.Row="1" HorizontalAlignment="Left" Margin="242,0,0,275" Name="button_SendMail" Width="180" Click="button_SendMail_Click" Height="38" VerticalAlignment="Bottom">Send Mail</Button>
<TextBox BorderBrush="Blue" FontSize="14" Height="29" Margin="70,174,433,0" Name="textBox_AdressCC" VerticalAlignment="Top" Grid.Row="1" TextWrapping="NoWrap"></TextBox>
<TextBox BorderBrush="Blue" FontSize="14" Height="29" Margin="70,209,433,0" Name="textBox_AdressBCC" VerticalAlignment="Top" Grid.Row="1" />
<Label Grid.Row="1" Margin="438,0,500,278" Name="label_PleaseWait" Background="White" Visibility="Visible" Height="28" VerticalAlignment="Bottom">Please Wait...</Label>
</Grid>
</UserControl> |