SystemTrayMenu/UserInterface/TaskbarForm.cs
Markus Hofknecht 1052dbb01c #115, version 0.11.1.11
[Feature] Show icon in taskbar when application is running #115
2020-06-28 15:17:23 +02:00

30 lines
774 B
C#

using System.Drawing;
using System.Windows.Forms;
namespace SystemTrayMenu.UserInterface
{
public partial class TaskbarForm : Form
{
public TaskbarForm()
{
InitializeComponent();
SetLocation();
}
private void TaskbarForm_LocationChanged(object sender, System.EventArgs e)
{
SetLocation();
}
private void SetLocation()
{
Screen screen = Screen.PrimaryScreen;
Location = new Point(screen.Bounds.Right - Size.Width,
//we could show behind taskbar?
//screen.Bounds.Bottom- Size.Height);
//but at the moment we dont want to see this
screen.Bounds.Bottom); // - Size.Height);
}
}
}