Files
eveo/Eve-O-Preview/Thumbnail/Implementation/ThumbnailOverlay.cs
2016-05-29 13:18:46 +03:00

37 lines
785 B
C#

using System;
using System.Windows.Forms;
namespace EveOPreview.Thumbnails
{
public partial class ThumbnailOverlay : Form
{
private readonly Action<object, MouseEventArgs> _areaClickAction;
public ThumbnailOverlay(Action<object, MouseEventArgs> areaClickAction)
{
this._areaClickAction = areaClickAction;
InitializeComponent();
}
private void OverlayArea_Click(object sender, MouseEventArgs e)
{
this._areaClickAction(sender, e);
}
public void SetOverlayLabel(string label)
{
this.OverlayLabel.Text = label;
}
protected override CreateParams CreateParams
{
get
{
var Params = base.CreateParams;
Params.ExStyle |= (int)DwmApiNativeMethods.WS_EX_TOOLWINDOW;
return Params;
}
}
}
}