- 각 창들 추가

- Analysis Panel 계산 준비
This commit is contained in:
2017-06-19 14:07:56 +09:00
parent 5e26c490b8
commit cc42695fd8
16 changed files with 761 additions and 32 deletions

25
PanelTrendGraph.cs Normal file
View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using WeifenLuo.WinFormsUI.Docking;
namespace friction
{
public partial class PanelTrendGraph : DockContent
{
MainForm m_Owner = null;
public PanelTrendGraph(MainForm owner)
{
InitializeComponent();
m_Owner = owner;
}
}
}