private void FullScreenForm_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
        {
            _graphicsObj.FillRectangle(new SolidBrush(Color.Black), _graphicsObj.VisibleClipBounds);

            ImageItem i = _parentForm.GetCurrentImageItem();

            i.Draw(_graphicsObj);
        }