Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for StartAllBack multitaskbar notification area #1662

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions EarTrumpet/Interop/Helpers/WindowsTaskbar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static uint Dpi
{
unsafe
{
return PInvoke.GetDpiForWindow(new HWND(GetHwnd()));
return PInvoke.GetDpiForShellUIComponent(SHELL_UI_COMPONENT.SHELL_UI_COMPONENT_NOTIFICATIONAREA);
}
}
}
Expand All @@ -53,7 +53,7 @@ public static State Current
var appBarData = new APPBARDATA
{
cbSize = (uint)Marshal.SizeOf(typeof(APPBARDATA)),
hWnd = new HWND(hwnd)
lParam = 0x42 // magic to get active taskbar rect with StartAllBack
};

// SHAppBarMessage: Understands Taskbar auto-hide
Expand All @@ -62,6 +62,7 @@ public static State Current
{
state.Size = appBarData.rc;
state.Location = (Position)appBarData.uEdge;
state.ContainingScreen = Screen.FromRectangle((System.Drawing.Rectangle)appBarData.rc);
}
else
{
Expand Down
1 change: 1 addition & 0 deletions EarTrumpet/NativeMethods.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ GET_GUI_RESOURCES_FLAGS
GetApplicationUserModelId
GetClassName
GetCurrentProcess
GetDpiForShellUIComponent
GetDpiForSystem
GetDpiForWindow
GetForegroundWindow
Expand Down
4 changes: 4 additions & 0 deletions EarTrumpet/UI/Views/FlyoutWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ private void OnStateChanged(object sender, object e)

Show();
EnableAcrylicIfApplicable(taskbar);
var prevDpi = this.DpiX();
PositionWindowRelativeToTaskbar(taskbar);
// Account for DPI changing due to SetWindowPos
if (this.DpiX() != prevDpi)
PositionWindowRelativeToTaskbar(taskbar);

// Focus the first device if available.
DevicesList.FindVisualChild<DeviceView>()?.FocusAndRemoveFocusVisual();
Expand Down