Skip to content

Commit

Permalink
Fix the Non Scrolling List of the Participants
Browse files Browse the repository at this point in the history
  • Loading branch information
masterzdran committed Apr 30, 2014
1 parent de2513a commit 61b411f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/SilverlightApp/Views/Participantes.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
Grid.RowSpan="2"
Margin="20,5"
FontSize="12"
SizeChanged="ParticipantsList_SizeChanged"

>
<ListBox.ItemTemplate>
<DataTemplate>
Expand All @@ -43,13 +43,13 @@
CommandParameter="{Binding}">
<Image Source="/SilverlightApp;component/Assets/Images/Delete.png" />
</Button>
<TextBlock Margin="10,0,0,0" Text="{Binding}" />
<TextBlock Margin="20,0,0,0" Text="{Binding}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<toolkit:WrapPanel Orientation="Vertical"/>
<toolkit:WrapPanel Orientation="Vertical" MaxHeight="400"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
Expand Down

0 comments on commit 61b411f

Please sign in to comment.