本文介绍了如何在C#中添加一个复选框到toolstrip?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有一个工具条,我想给它添加一个复选框,但我不知道该怎么做。 请帮帮我。I have a toolstrip and i want to add a checkbox to it,but Idont know how to do it.please help me.推荐答案表单加载事件中的CheckBox cb = new CheckBox();cb.Text = "test";cb.CheckStateChanged += (s, ex) => this.Text = cb.CheckState.ToString();ToolStripControlHost host = new ToolStripControlHost(cb);toolStrip1.Items.Insert(0,host); 内联代码更改为代码块:它保留格式 - OriginalGriff [/ edit] [edit]Inline code changed to Code block: it preserves the formatting- OriginalGriff[/edit] 这篇关于如何在C#中添加一个复选框到toolstrip?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-27 09:11