mirror of
https://github.com/ckaczor/wpf-notifyicon.git
synced 2026-01-14 01:25:45 -05:00
Add extension point CustomPopupPosition to show Balloon on custom position. AppBarInfo.WorkArea now return appbar workarea. Before it returns screen workarea.
165 lines
4.7 KiB
C#
165 lines
4.7 KiB
C#
// Some interop code taken from Mike Marshall's AnyForm
|
|
|
|
using System;
|
|
using System.Drawing;
|
|
using System.Runtime.InteropServices;
|
|
using System.Windows;
|
|
|
|
|
|
namespace Hardcodet.Wpf.TaskbarNotification.Interop
|
|
{
|
|
/// <summary>
|
|
/// Resolves the current tray position.
|
|
/// </summary>
|
|
public static class TrayInfo
|
|
{
|
|
/// <summary>
|
|
/// Gets the position of the system tray.
|
|
/// </summary>
|
|
/// <returns>Tray coordinates.</returns>
|
|
public static Point GetTrayLocation()
|
|
{
|
|
int space = 2;
|
|
var info = new AppBarInfo();
|
|
info.GetSystemTaskBarPosition();
|
|
|
|
Rectangle rcWorkArea = info.WorkArea;
|
|
|
|
int x = 0, y = 0;
|
|
if (info.Edge == AppBarInfo.ScreenEdge.Left)
|
|
{
|
|
x = rcWorkArea.Right + space;
|
|
y = rcWorkArea.Bottom;
|
|
}
|
|
else if (info.Edge == AppBarInfo.ScreenEdge.Bottom)
|
|
{
|
|
x = rcWorkArea.Right;
|
|
y = rcWorkArea.Bottom - rcWorkArea.Height - space;
|
|
}
|
|
else if (info.Edge == AppBarInfo.ScreenEdge.Top)
|
|
{
|
|
x = rcWorkArea.Right;
|
|
y = rcWorkArea.Top + rcWorkArea.Height + space;
|
|
}
|
|
else if (info.Edge == AppBarInfo.ScreenEdge.Right)
|
|
{
|
|
x = rcWorkArea.Right - rcWorkArea.Width - space;
|
|
y = rcWorkArea.Bottom;
|
|
}
|
|
|
|
return GetDeviceCoordinates(new Point {X = x, Y = y});
|
|
}
|
|
|
|
/// <summary>
|
|
/// Recalculates OS coordinates in order to support WPFs coordinate
|
|
/// system if OS scaling (DPIs) is not 100%.
|
|
/// </summary>
|
|
/// <param name="point"></param>
|
|
/// <returns></returns>
|
|
public static Point GetDeviceCoordinates(Point point)
|
|
{
|
|
return new Point() { X = (int)(point.X / SystemInfo.DpiXFactor), Y = (int)(point.Y / SystemInfo.DpiYFactor) };
|
|
}
|
|
}
|
|
|
|
|
|
public class AppBarInfo
|
|
{
|
|
[DllImport("user32.dll")]
|
|
private static extern IntPtr FindWindow(String lpClassName, String lpWindowName);
|
|
|
|
[DllImport("shell32.dll")]
|
|
private static extern UInt32 SHAppBarMessage(UInt32 dwMessage, ref APPBARDATA data);
|
|
|
|
[DllImport("user32.dll")]
|
|
private static extern Int32 SystemParametersInfo(UInt32 uiAction, UInt32 uiParam,
|
|
IntPtr pvParam, UInt32 fWinIni);
|
|
|
|
|
|
private const int ABE_BOTTOM = 3;
|
|
private const int ABE_LEFT = 0;
|
|
private const int ABE_RIGHT = 2;
|
|
private const int ABE_TOP = 1;
|
|
|
|
private const int ABM_GETTASKBARPOS = 0x00000005;
|
|
|
|
// SystemParametersInfo constants
|
|
private const UInt32 SPI_GETWORKAREA = 0x0030;
|
|
|
|
private APPBARDATA m_data;
|
|
|
|
public ScreenEdge Edge
|
|
{
|
|
get { return (ScreenEdge) m_data.uEdge; }
|
|
}
|
|
|
|
public Rectangle WorkArea
|
|
{
|
|
get { return GetRectangle(m_data.rc); }
|
|
}
|
|
|
|
private Rectangle GetRectangle(RECT rc)
|
|
{
|
|
return new Rectangle(rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top);
|
|
}
|
|
|
|
public void GetPosition(string strClassName, string strWindowName)
|
|
{
|
|
m_data = new APPBARDATA();
|
|
m_data.cbSize = (UInt32) Marshal.SizeOf(m_data.GetType());
|
|
|
|
IntPtr hWnd = FindWindow(strClassName, strWindowName);
|
|
|
|
if (hWnd != IntPtr.Zero)
|
|
{
|
|
UInt32 uResult = SHAppBarMessage(ABM_GETTASKBARPOS, ref m_data);
|
|
|
|
if (uResult != 1)
|
|
{
|
|
throw new Exception("Failed to communicate with the given AppBar");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Failed to find an AppBar that matched the given criteria");
|
|
}
|
|
}
|
|
|
|
|
|
public void GetSystemTaskBarPosition()
|
|
{
|
|
GetPosition("Shell_TrayWnd", null);
|
|
}
|
|
|
|
|
|
public enum ScreenEdge
|
|
{
|
|
Undefined = -1,
|
|
Left = ABE_LEFT,
|
|
Top = ABE_TOP,
|
|
Right = ABE_RIGHT,
|
|
Bottom = ABE_BOTTOM
|
|
}
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
private struct APPBARDATA
|
|
{
|
|
public UInt32 cbSize;
|
|
public IntPtr hWnd;
|
|
public UInt32 uCallbackMessage;
|
|
public UInt32 uEdge;
|
|
public RECT rc;
|
|
public Int32 lParam;
|
|
}
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
private struct RECT
|
|
{
|
|
public Int32 left;
|
|
public Int32 top;
|
|
public Int32 right;
|
|
public Int32 bottom;
|
|
}
|
|
}
|
|
} |