public Control MakeLabelPanel()
        {
            JwHorizontalLayout p = new JwHorizontalLayout();
            p.AlignLeft();
            p.AlignBottom();
            p.Gap = 1;

            _visibilityWrapper = new JwVisibilityWrapper(_pictureBox, false);
            p.Add(_visibilityWrapper);
            p.Add(_label);

            if( _linkLabel == null ) return p;

            JwLeftRightLayout lr = new JwLeftRightLayout();
            lr.LeftControl = p;
            lr.RightControl = _linkLabel;
            return lr;
        }