C#(WinForm)设置comboBox选定项为tooltip内容

来源:互联网 发布:r常用的算法 编辑:程序博客网 时间:2024/06/05 00:57

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            toolTip1.SetToolTip(comboBox1, comboBox1.SelectedItem.ToString());
        } 

原创粉丝点击