(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