我正在使用vb.net 2013。
有没有办法访问和修改TextBox的上下文菜单项?
我想隐藏其中一些项目。
我想翻译标题。
谢谢!
答案 0 :(得分:0)
是的。下面的示例,您根据已设置的条件隐藏的位置。
unit xyz;
interface
resourcestring
RSabc= 'my text here';
implementation
end.
我不确定你的标题是什么意思(但我认为这是文字)
if (yourCondition) then
yourTextBox.ContextMenuStrip.Items.RemoveByKey(theNameOfTheStrip)
end if