ILNumerics隐藏PlotCube

时间:2018-01-25 15:14:58

标签: c# winforms plot ilnumerics

我有一个带有两个不同PlotCube的场景,必须单独显示。隐藏和显示PlotCubes的最佳程序是什么。我尝试过删除,但这似乎改变了PlotCube对象。 代码行是:

IlPanel1.Scene.add(PlotCube1)  
IlPanel1.Scene.add(PlotCube2)  

现在两个立方体都可见。现在我只想显示PlotCube2

IlPanel1.Scene.Remove(PlotCube1)  
IlPanel1.Scene.add(PlotCube2)

切换回PlotCube1:

IlPanel1.Scene.Remove(PlotCube2)  
IlPanel1.Scene.add(PlotCube1)  

但这不起作用。 remove语句似乎删除了整个对象。有没有办法在不影响原始对象的情况下添加/删除元素作为LinePlots,SurfacePlots,PlotCubes?

1 个答案:

答案 0 :(得分:0)

使用Visibleplot cube属性来显示其可见性:

// stores the current state. (You may even use one of the ILPlotCube.Visible flags directly)
bool m_panelState = false;

// give the plot cubes unique tags so we can find them later.
private void ilPanel1_Load(object sender, EventArgs e) {
    ilPanel1.Scene.Add(new ILPlotCube("plotcube1") {
        Plots = {
            Shapes.Circle100, // just some arbitrary content
            new ILLabel("Plot Cube 1")
        },
        // first plot cube starts invisible
        Visible = false
    });
    ilPanel1.Scene.Add(new ILPlotCube("plotcube2") {
        Plots = {
            Shapes.Hemisphere, // just some content
            new ILLabel("Plot Cube 2")
        }
    });
}
// a button is used to switch between the plot cubes
private void button1_Click(object sender, EventArgs e) {
    m_panelState = !m_panelState;
    SetState(); 
}
// both plot cubes are made (un)visible depending on the value of the state variable
private void SetState() {
    ilPanel1.Scene.First<ILPlotCube>("plotcube1").Visible = m_panelState;
    ilPanel1.Scene.First<ILPlotCube>("plotcube2").Visible = !m_panelState;
    ilPanel1.Refresh(); 
}

重要的是在面板上调用Refresh(),以便立即显示修改。

请注意,一般情况下,如果您以后再次需要它们,最好继续绘制对象。不是将它们从场景图中移除并稍后重新创建类似的对象,而是将对象设置为Visible = false要快得多,并且不会产生(重新)创建图形对象的相当大的成本。