add ScrollViewer and Border
This commit is contained in:
parent
d9ee95294b
commit
74d24f3946
@ -16,15 +16,21 @@
|
||||
<TextBlock x:Name="MesDelError" Text="" Foreground="Red"/>
|
||||
<TextBlock x:Name="MesDel" Text="" Foreground="Green"/>
|
||||
</StackPanel>
|
||||
|
||||
<ListBox Name="Items" SelectionChanged="ListBox_SelectionChanged">
|
||||
<ListBox.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<TextBlock Text="{Binding ClientName}"/>
|
||||
</DataTemplate>
|
||||
</ListBox.ItemTemplate>
|
||||
</ListBox>
|
||||
|
||||
|
||||
<Border Background="Red"
|
||||
CornerRadius="10"
|
||||
Padding="20"
|
||||
Margin="20"
|
||||
Width="400"
|
||||
Height="500">
|
||||
<ScrollViewer>
|
||||
<ListBox Name="Items" SelectionChanged="ListBox_SelectionChanged">
|
||||
<ListBox.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<TextBlock Text="{Binding ClientName}"/>
|
||||
</DataTemplate>
|
||||
</ListBox.ItemTemplate>
|
||||
</ListBox>
|
||||
</ScrollViewer>
|
||||
</Border>
|
||||
</StackPanel>
|
||||
</Window>
|
||||
|
@ -17,14 +17,21 @@
|
||||
<TextBlock x:Name="MesDel" Text="" Foreground="Green"/>
|
||||
</StackPanel>
|
||||
|
||||
|
||||
<ListBox Name="Items" SelectionChanged="ListBox_SelectionChanged">
|
||||
<ListBox.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<TextBlock Text="{Binding EmployeesName}"/>
|
||||
</DataTemplate>
|
||||
</ListBox.ItemTemplate>
|
||||
</ListBox>
|
||||
|
||||
<Border Background="Red"
|
||||
CornerRadius="10"
|
||||
Padding="20"
|
||||
Margin="20"
|
||||
Width="400"
|
||||
Height="500">
|
||||
<ScrollViewer>
|
||||
<ListBox Name="Items" SelectionChanged="ListBox_SelectionChanged">
|
||||
<ListBox.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<TextBlock Text="{Binding EmployeesName}"/>
|
||||
</DataTemplate>
|
||||
</ListBox.ItemTemplate>
|
||||
</ListBox>
|
||||
</ScrollViewer>
|
||||
</Border>
|
||||
</StackPanel>
|
||||
</Window>
|
||||
|
Loading…
Reference in New Issue
Block a user