티스토리 뷰

C#/WPF

WPF tutorial - A simple ListView example

광그로 2017. 7. 3. 22:33

http://www.wpf-tutorial.com/listview-control/simple-listview/


WPF ListView control은 ListBox control을 직접적으로 상속받기 때문에 매우 비슷하게 보입니다.

1
2
3
4
5
6
7
8
9
10
11
 <Grid>
        <ListView Margin="10">
            <ListViewItem>
                <TextBlock Foreground="Red" FontWeight="Bold">
                    A ListView
                </TextBlock>
            </ListViewItem>
            <ListViewItem IsSelected="True">with several</ListViewItem>
            <ListViewItem>items</ListViewItem>
        </ListView>
    </Grid>
cs



ListViewItem은 ContentControl 클래스에서 파생되므로 custom하게 할 수 있습니다.

공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
글 보관함