This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
linear-app-launcher/Windows/Forms/TitlePanel.cs

76 lines
2.1 KiB
C#
Raw Normal View History

2020-03-29 14:28:38 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AppLauncher.Windows.Forms
{
public partial class TitlePanel : UserControl
{
2020-04-05 00:32:49 +00:00
private bool isDragging = false;
2020-03-29 14:28:38 +00:00
private Point windowOffset = new Point();
public TitlePanel()
{
InitializeComponent();
}
protected override void OnParentBindingContextChanged(EventArgs e)
{
base.OnParentBindingContextChanged(e);
if (this.Parent != null)
{
if (this.Parent.GetType() == typeof(MainForm))
{
pictureBox1.MouseDown += parentForm_MouseDown;
pictureBox1.MouseUp += parentForm_MouseUp;
pictureBox1.MouseMove += parentForm_MouseMove;
}
}
}
[Category("Appearance"), Browsable(true)]
public string TitleText
{
get => label1.Text;
set => label1.Text = value;
}
protected void parentForm_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button != MouseButtons.Left)
{
return;
}
2020-04-05 00:32:49 +00:00
isDragging = true;
2020-03-29 14:28:38 +00:00
windowOffset = e.Location;
}
protected void parentForm_MouseUp(object sender, MouseEventArgs e)
{
2020-04-05 00:32:49 +00:00
isDragging = false;
2020-03-29 14:28:38 +00:00
}
protected void parentForm_MouseMove(object sender, MouseEventArgs e)
{
2020-04-05 00:32:49 +00:00
if (isDragging)
2020-03-29 14:28:38 +00:00
{
Point pos = this.PointToScreen(e.Location);
int y = Math.Max((pos.Y - windowOffset.Y), Screen.PrimaryScreen.WorkingArea.Y);
y = Math.Min(y, (Screen.PrimaryScreen.WorkingArea.Y + Screen.PrimaryScreen.WorkingArea.Height) - this.Height);
this.Parent.Location = new Point(Screen.PrimaryScreen.WorkingArea.X, y);
}
}
}
}