- Material Compatibility Map 추가
This commit is contained in:
14
MainForm.cs
14
MainForm.cs
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user