1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
<ListView Margin="14,38,0,106" Name="lvwUnasignedGroups" ItemsSource="{Binding Path=UnassignedGroups}" HorizontalAlignment="Left" Width="300" SelectionChanged="lvwUnasignedGroups_SelectionChanged">
<ListView.View>
<GridView>
<GridViewColumn Header="nom (fr)" Width="140">
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBox Text="{Binding Path=Name.FRA}" GotFocus="TextBox_GotFocus" />
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn Header="nom (de)" Width="140">
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBox Text="{Binding Path=Name.DEU}" GotFocus="TextBox_GotFocus" />
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView>
</ListView.View>
</ListView> |
Partager