EBS_POC/EBS POC/Controls/Worker_Window.xaml

24 lines
1.2 KiB
XML

<UserControl x:Name="userControl" x:Class="EBS_POC.Controls.Worker_Window"
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:local="clr-namespace:EBS_POC.Controls"
mc:Ignorable="d"
d:DesignWidth="200" Height="150" Loaded="userControl_Loaded">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition/>
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" VerticalAlignment="Top">
<TextBlock Text="Worker Name: "></TextBlock>
<TextBlock x:Name="textWorker"></TextBlock>
</StackPanel>
<Grid Grid.Row="1">
<TextBlock Text="Notes" Margin="0,10,0,0"></TextBlock>
<TextBox x:Name="textNotes" Margin="0,30,0,30" TextWrapping="Wrap" PreviewTextInput="textNotes_PreviewTextInput" KeyUp="textNotes_KeyUp"/>
</Grid>
</Grid>
</UserControl>