單列:
<ListView Grid.Column="1" Height="284" HorizontalAlignment="Left" Margin="64,73,0,0" Name="listView1" VerticalAlignment="Top" Width="310" >
?? ? ? ? ? ?<ListView.ItemsPanel>
?? ? ? ? ? ? ? ?<ItemsPanelTemplate>
?? ? ? ? ? ? ? ? ? ?<WrapPanel > ? ? ? ? ? ? ? ? ? ? ? ?
?? ? ? ? ? ? ? ? ? ?</WrapPanel>
?? ? ? ? ? ? ? ?</ItemsPanelTemplate>
?? ? ? ? ? ?</ListView.ItemsPanel>
?? ? ? ? ? ?<ListView.ItemTemplate>
?? ? ? ? ? ? ? ?<DataTemplate>
?? ? ? ? ? ? ? ? ? ?<Grid >
?? ? ? ? ? ? ? ? ? ? ? ?<CheckBox IsChecked="{Binding checked}" Content="{Binding text}" ></CheckBox>
?? ? ? ? ? ? ? ? ? ?</Grid>
?? ? ? ? ? ? ? ?</DataTemplate>
?? ? ? ? ? ?</ListView.ItemTemplate>
?? ? ? ?</ListView>
多列:
<ListView Margin="12,30,12,10" Name="listviewLog" Grid.Row="1">
?? ? ? ? ? ?<ListView.View>?? ? ? ? ? ? ? ?<GridView>
?? ? ? ? ? ? ? ? ? ?<GridView.Columns> ? ? ? ? ? ? ? ? ? ? ? ?
?? ? ? ? ? ? ? ? ? ? ? ?<GridViewColumn Header="操作人" ? Width="80">
?? ? ? ? ? ? ? ? ? ? ? ? ? ?<GridViewColumn.CellTemplate>
?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<DataTemplate>
?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<TextBlock Text="{Binding Path=OPERATOR}" ToolTip="{Binding Path=OPERATOR}"></TextBlock>
?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</DataTemplate>
?? ? ? ? ? ? ? ? ? ? ? ? ? ?</GridViewColumn.CellTemplate>
?? ? ? ? ? ? ? ? ? ? ? ?</GridViewColumn>
?? ? ? ? ? ? ? ? ? ? ? ?<GridViewColumn Header="時間" ?Width="150">
?? ? ? ? ? ? ? ? ? ? ? ? ? ?<GridViewColumn.CellTemplate>
?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<DataTemplate>
?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<TextBlock Text="{Binding Path=DDATE}" ToolTip="{Binding Path=DDATE}"></TextBlock>
?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</DataTemplate>
?? ? ? ? ? ? ? ? ? ? ? ? ? ?</GridViewColumn.CellTemplate>
?? ? ? ? ? ? ? ? ? ? ? ?</GridViewColumn>
?? ? ? ? ? ? ? ? ? ? ? ?<GridViewColumn Header="內容" ?Width="500" >
?? ? ? ? ? ? ? ? ? ? ? ? ? ?<GridViewColumn.CellTemplate>
?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<DataTemplate>
?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<TextBlock Text="{Binding Path=CONTENT}" ToolTip="{Binding Path=CONTENT}"></TextBlock>
?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</DataTemplate>
?? ? ? ? ? ? ? ? ? ? ? ? ? ?</GridViewColumn.CellTemplate>
?? ? ? ? ? ? ? ? ? ? ? ?</GridViewColumn>
?? ? ? ? ? ? ? ? ? ?</GridView.Columns>
?? ? ? ? ? ? ? ?</GridView>
?? ? ? ? ? ?</ListView.View>
?? ? ? ?</ListView>