-
Notifications
You must be signed in to change notification settings - Fork 0
/
offer.xaml
33 lines (30 loc) · 1.44 KB
/
offer.xaml
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
<Window x:Class="Employeee_Details.offer"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Employeee_Details"
mc:Ignorable="d"
Background="Lavender"
Title="offer" Height="450" Width="800">
<ScrollViewer>
<StackPanel >
<StackPanel>
<Label Height="54" Width="120" Margin="40,10,10,10">
<Label.Content>
<StackPanel>
<Image Source="C:\Users\nathe\Downloads\Telegram Desktop\logo-envato.png"></Image>
</StackPanel>
</Label.Content>
</Label>
</StackPanel>
<StackPanel Width="754" Orientation="Horizontal">
<Label x:Name="lbl_one" Width="271" Height="50" Margin="0,20,10,10" FontSize="25" FontWeight="Bold"/>
<Label Width="310" Height="136" x:Name="lbl_address" HorizontalAlignment="Right" FontSize="25" FontWeight="Bold" Margin="150,0,0,0"/>
</StackPanel>
<StackPanel>
<Label x:Name="lbl_two" FontSize="25" Height="1309" Width="744" ></Label>
</StackPanel>
</StackPanel>
</ScrollViewer>
</Window>