(9)WPF 列表控件


   

一、ListBox

 

        <ListBox Width="60" Height="40">
            <ListBoxItem>a</ListBoxItem>
            <ListBoxItem>b</ListBoxItem>
            <ListBoxItem>c</ListBoxItem>
        </ListBox>

省略Item

        <ListBox Width="60" Height="40">
            <Label>a</Label>
            <Label>b</Label>
            <Label>c</Label>
        </ListBox>

选中事件

    <ListBox Name="listBox" Width="60" Height="80" SelectionChanged="listBox_SelectionChanged" >
            <Label>a</Label>
            <Label>b</Label>
            <Label>c</Label>
        </ListBox>

 

 

二、ComboBox

下拉框

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM