/// <summary>
        /// Constructor.
        /// </summary>
        public PerformanceAnalysisComponentControl(PerformanceAnalysisComponent component)
            : base(component)
        {
            _component = component;
            InitializeComponent();

            _table.Table     = _component.Table;
            _table.MenuModel = _component.MenuModel;
            _table.ReadOnly  = true;
        }
        /// <summary>
        /// Constructor.
        /// </summary>
        public PerformanceAnalysisComponentControl(PerformanceAnalysisComponent component)
            :base(component)
        {
			_component = component;
            InitializeComponent();

        	_table.Table = _component.Table;
        	_table.MenuModel = _component.MenuModel;
        	_table.ReadOnly = true;
        }
 /// <summary>
 /// Called by the host to assign this view to a component.
 /// </summary>
 public void SetComponent(IApplicationComponent component)
 {
     _component = (PerformanceAnalysisComponent)component;
 }
 /// <summary>
 /// Called by the host to assign this view to a component.
 /// </summary>
 public void SetComponent(IApplicationComponent component)
 {
     _component = (PerformanceAnalysisComponent)component;
 }