zoukankan      html  css  js  c++  java
  • combobox的那几个change事件

    combobox中有1,2,3三个item

    第1次选择1,四个事件都触发了,当我再次选择1时,4没出现,3,2,1均出现

            private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)

            {

                MessageBox.Show("1");

            }

            private void comboBox1_SelectedValueChanged(object sender, EventArgs e)

            {

                MessageBox.Show("2");

            }

            private void comboBox1_SelectionChangeCommitted(object sender, EventArgs e)

            {

                MessageBox.Show("3");

            }

            private void comboBox1_TextChanged(object sender, EventArgs e)

            {

                MessageBox.Show("4");

            }

  • 相关阅读:
    RabbitMq
    SAAS-HEM
    java框架
    数据结构
    JVM
    springboot高级
    面试题汇总
    vue
    bootforum
    SpringBoot
  • 原文地址:https://www.cnblogs.com/swtool/p/3832399.html
Copyright © 2011-2022 走看看