【发布时间】:2023-01-09 00:40:20
【问题描述】:
我正在构建一个函数,它将接收(在本例中)FlowLayoutPanel 的名称作为变量 showme,我想使用此变量来设置该特定面板可见。
ps 我是 c++ 的新手!
任何帮助将不胜感激。
以下不工作
void JommSwitchPanels(FlowLayoutPanel^ showme)
{
//stuff here to hide the menu panels
showme.Visable = true;//the error is shown on showme
flowfleet1->Visible = false;
flowhr->Visible = false;
}
【问题讨论】:
标签: c++-cli