- Material Compatibility Map 추가

This commit is contained in:
2017-06-23 15:53:56 +09:00
parent bc27de2ea5
commit 4503bfc7a5
8 changed files with 372 additions and 25 deletions

View File

@@ -19,6 +19,7 @@ namespace friction
PanelMaterial m_MaterialPanel = null;
PanelResult m_ResultPanel = null;
PanelAnalysis m_AnalysisPanel = null;
PanelCompatibility m_CompatibilityPanel = null;
PanelRadarGraph m_RadarGraphPanel = null;
PanelTrendGraph m_TrendGraphPanel = null;
@@ -30,6 +31,7 @@ namespace friction
m_MaterialPanel = new PanelMaterial(this);
m_ResultPanel = new PanelResult(this);
m_AnalysisPanel = new PanelAnalysis(this);
m_CompatibilityPanel = new PanelCompatibility(this);
m_RadarGraphPanel = new PanelRadarGraph(this, m_DataHandler);
m_TrendGraphPanel = new PanelTrendGraph(this, m_DataHandler);
@@ -137,6 +139,12 @@ namespace friction
OpenPanel(m_AnalysisPanel);
}
private void materialCompatibilityMapToolStripMenuItem_Click(object sender, EventArgs e)
{
OpenPanel(m_CompatibilityPanel);
m_CompatibilityPanel.UpdateData(m_DataHandler);
}
private void radarGraphToolStripMenuItem_Click(object sender, EventArgs e)
{
OpenPanel(m_RadarGraphPanel);
@@ -179,6 +187,12 @@ namespace friction
OpenPanel(m_AnalysisPanel);
}
private void toolStripButtonMap_Click(object sender, EventArgs e)
{
OpenPanel(m_CompatibilityPanel);
m_CompatibilityPanel.UpdateData(m_DataHandler);
}
private void toolStripButtonRadarGraph_Click(object sender, EventArgs e)
{
OpenPanel(m_RadarGraphPanel);