public ObjectTextLabelPanel(IObjectValueRead aObjectValue)
        {
            mObjectValue = aObjectValue;
            InitializeComponent();

            BackColor = SystemColors.Control;
            updateV();
            resizeToContent();
        }
        protected override void     Dispose(bool disposing)
        {
            if (disposing)
            {
                mObjectValue = null;
                toolTip.RemoveAll();

                if (components != null)
                {
                    components.Dispose();
                }
            }
            base.Dispose(disposing);
        }