本文介绍了C#toolStripMenuItem问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在开发一个带有MenuTrip控件的程序.

Hi, I am developing a program with MenuTrip controls.

但是我发现一个奇怪的问题,当您禁用toolstripmenuItem时,其下拉项仍显示如下

but I find a strange issue that when you disable a toolstripmenuItem, the dropdown item of its still shown as below

如何在不显示下拉菜单项时使其不显示toolstripmenuItem已禁用?

How to make it not show the dropdown items when  toolstripmenuItem is disabled? 

预先感谢!

推荐答案

 private void button1_Click(object sender, EventArgs e)
        {
            sivaToolStripMenuItem1.Dispose();
        }


这篇关于C#toolStripMenuItem问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 16:09