EnergyEfficiencyPanel.h

#pragma once


namespace Core
{
    ref class Motion;


    /// <summary>
    /// エネルギー効率パネル
    /// </summary>
    public ref class EnergyEfficiencyPanel : public WeifenLuo::WinFormsUI::Docking::DockContent
    {
    // Construction --------------------------------------------------------
    public:
        EnergyEfficiencyPanel( Motion^ motion );

    protected:
        ~EnergyEfficiencyPanel();


    // Operation -----------------------------------------------------------
    private:
        void InitializeComponent(void);


    // Event Handler -------------------------------------------------------
    private:
        void MotionChanged( System::Object^ sender, System::EventArgs^ e );


        //
        // 以降は デザイナによって自動生成されたコード
        //


    private: ZedGraph::ZedGraphControl^ m_zedGraph;
    private: System::ComponentModel::IContainer^ components;

    };
}