/// <summary>
        /// Constructor.
        /// </summary>
        public ComponentTradingExpertControl(ComponentTradingExpert expert)
        {
            InitializeComponent();

            this.CreateControl();
            Expert = expert;
        }
 /// <summary>
 /// Handle destruction of object to release any resources or links.
 /// </summary>
 /// <param name="e"></param>
 public override void UnInitializeControl()
 {
     Expert = null;
     base.UnInitializeControl();
 }