• 列表控件 ListBox、ComboBox


    列表控件可以当作容器,内部可以有RadioButton、CheckBox、StackPanel等。即Items类型多样。

    ListBox,多个Item可被选中;ComboBox,只能有一个Item被选中。

        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="Auto"/>
                <RowDefinition Height="*"/>
            </Grid.RowDefinitions>
            <ListBox x:Name="listBox" Margin="5" SelectionChanged="listBox_SelectionChanged" >
                <CheckBox x:Name="checkBox" Content="CheckBox"/>
                <CheckBox x:Name="checkBox1" Content="CheckBox1"/>
                <CheckBox x:Name="checkBox2" Content="CheckBox2"/>
            </ListBox>
            <StackPanel Grid.Row="1" Margin="5">
                <TextBlock Text="选中结果"/>
                <TextBlock x:Name="textBlock" TextWrapping="Wrap"/>
                <Button x:Name="button" Content="统计"  HorizontalAlignment="Center" Click="button_Click"/>
            </StackPanel> 
        </Grid>
         private void listBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
            {
                if (listBox.SelectedItem==null)
                {
                    return;
                }
                textBlock.Text = "选中的是:" +((CheckBox)listBox.SelectedItem).Content+"
    状态:" + ((CheckBox)listBox.SelectedItem).IsChecked;
            }
    
            private void button_Click(object sender, RoutedEventArgs e)
            {
                StringBuilder sb = new StringBuilder();
                foreach (CheckBox item in listBox.Items)
                {
                    if (item.IsChecked==true)
                    {
                        sb.Append(item.Content+"被选中
    ");
                    }
                }
                textBlock.Text = sb.ToString();
            }
  • 相关阅读:
    MySQL
    LeetCode
    数据结构
    我的编程幻想曲,更新中
    快速排序
    C与C++的区别
    必须要使用列表初始化的几种情况
    析构中delete this
    指向自身类型的成员指针的初始化,this不属于类对象的一部分
    构造函数
  • 原文地址:https://www.cnblogs.com/xixixing/p/11033354.html
Copyright © 2020-2023  润新知