|
<StackPanel Panel.ZIndex="1" Margin="0,30,0,0" Orientation="Horizontal" Height="30" Width="{Binding ElementName=treeGrid,Path=ActualWidth}"
VerticalAlignment="Top" HorizontalAlignment="Left" >
<TextBox x:Name="Title" Width="{Binding ElementName=title, Path=ActualWidth,Mode=TwoWay}" />
<TextBox x:Name="EmpId" Width="{Binding ElementName=empid, Path=ActualWidth, Mode=TwoWay}" />
<TextBox x:Name="FirstName" Width="{Binding ElementName=firstname, Path=ActualWidth, Mode=TwoWay}" />
<TextBox x:Name="LastName" Width="{Binding ElementName=lastname, Path=ActualWidth, Mode=TwoWay}" />
</StackPanel> |
|
<syncfusion:SfTreeGrid Name="treeGrid"
Grid.Row="0"
AutoExpandMode="RootNodesExpanded"
AutoGenerateColumns="False"
ChildPropertyName="ReportsTo"
HeaderRowHeight="60"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
|