toolStripButton 没有 'Show' & 'Hide' 的定义? (C#)
toolStripButton Has no Definition for 'Show' & 'Hide'? (c#)
因此,在解决我的问题之前,我有一些事情要指出。
-他们在同一个表格
- 常规按钮工作
-按下按钮即可激活
所以我的错误是 '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
根据您的描述,您似乎正在尝试单击常规按钮,以便使工具条按钮可见或打开工具条菜单。
你能澄清一下吗?如果您使用 show 使工具条按钮可见,您是否尝试查找工具条按钮 class 以获取其不同的命令?如果我理解你的问题,你似乎需要对 "show it" 使用 .visible = true。
.enabled 可能是另一种选择,如果您希望它显示但 clickable/not 可点击。
希望这有助于或允许您澄清。
因此,在解决我的问题之前,我有一些事情要指出。
-他们在同一个表格
- 常规按钮工作
-按下按钮即可激活
所以我的错误是 '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
根据您的描述,您似乎正在尝试单击常规按钮,以便使工具条按钮可见或打开工具条菜单。
你能澄清一下吗?如果您使用 show 使工具条按钮可见,您是否尝试查找工具条按钮 class 以获取其不同的命令?如果我理解你的问题,你似乎需要对 "show it" 使用 .visible = true。
.enabled 可能是另一种选择,如果您希望它显示但 clickable/not 可点击。
希望这有助于或允许您澄清。