toolStripButton没有定义'显示' &安培; '隐藏&#39 ;? (C#)

时间:2016-03-14 13:56:31

标签: c# hide show definition toolstripbutton

所以在我解决问题之前,我有一些事情需要指出。 - 他们的形式相同 - 常规按钮工作 - 只需按一下按钮即可激活此功能 所以我的错误是'ToolStripButton' does not contain a definition for 'Show' and no extension method 'Show' accepting a first arguement of type 'ToolStripButton' could be found (are you missing a using directive or assembly reference) 然后,我在C#上真的很高兴,我可能错过了一个使用系统的c#,但我不知道是什么。这是我的所有用途

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Text.RegularExpressions;
using System.IO;

好的,最后这里是我的错误的gyazo https://gyazo.com/bc25c1c9430c46a24bbf4066ad5d1c62 谢谢大家都很感激,不要讨厌我开始使用c#培训! PS。我尽量让我的标签尽可能具体,不要讨厌:P

1 个答案:

答案 0 :(得分:0)

根据您的描述,您似乎尝试单击常规按钮以使工具条按钮可见,或者打开工具条菜单。

你能澄清一下吗?如果您使用show来显示工具条按钮,您是否尝试查找工具条按钮类以获取其不同的命令?如果我理解你的问题,你似乎需要使用.visible = true来“显示它”。

.enabled可能是另一个选项,如果你想要它显示但可点击/不可点击。

希望这有助于或允许您澄清。