summaryrefslogtreecommitdiff
path: root/product/client/client.ui/views/CompensationTab.xaml
blob: 2cd7b45c73c44c1a01076643601aa3e205f7d8fa (plain)
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
<UserControl x:Class="presentation.windows.views.CompensationTab" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" MinWidth="800" MinHeight="600">
	<DockPanel HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
		<StackPanel>
			<TabControl TabStripPlacement="Left">
				<TabItem Header="Base Pay">
					<DockPanel>
						<Label>Enter Salary:</Label>
						<TextBox></TextBox>
					</DockPanel>
				</TabItem>
				<TabItem Header="Bonus">
					<DockPanel>
						<Label>Enter Bonus:</Label>
						<TextBox></TextBox>
					</DockPanel>
				</TabItem>
				<TabItem Header="LTIP">
					<DockPanel>
						<Label>Enter Grant:</Label>
						<TextBox></TextBox>
					</DockPanel>
				</TabItem>
			</TabControl>
		</StackPanel>
	</DockPanel>
</UserControl>