Replies: 11 comments 5 replies
-
@valinet, I have made a little program which summons calendar flyout, "detaches" it from taskbar and rounds it corners some time ago. If you can call some code when user opens flyout, this might be a good feature to have. #include <Windows.h>
#include <dwmapi.h>
#pragma comment(lib, "dwmapi.lib")
int main() {
PostMessageW(FindWindowExW(NULL, NULL, L"Shell_TrayWnd", NULL), 1486, 0, 0);
Sleep(1000);
HWND hWnd = GetForegroundWindow();
RECT rc;
GetWindowRect(hWnd, &rc);
SetWindowPos(hWnd, NULL, rc.left - 12, rc.top - 12, 0, 0, SWP_NOSIZE);
int val = 2;
DwmSetWindowAttribute(hWnd, 33, &val, sizeof(val));
return 0;
} |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Sorry to resurrect this a little bit, but wanted to ask before I spend time setting up outlook and calendar syncs for nothing - the Win 10 agenda view is not functional as of now? So if I add synced calendars from elsewhere to outlook account, they will not show up in the flyout? (I know the flyout suggests putting it in the Calendar app, but given that MS wants to throw it out as well this year, I would like to anticipate that change, but maybe that's for naught) |
Beta Was this translation helpful? Give feedback.
-
Also really interested in that, having Windows 11 TaskBar with Windows 10 Calendar would be a nice addition to the project. |
Beta Was this translation helpful? Give feedback.
-
Im Windows 11 24H2 OD BUILD 26100.2314 Now the comand in all the other Previous version of windows where taken Out for the window 10 FLYOUT "CLOCK And Calendar Now untill they Relased this version you have to go check you're Old setting's in 24H2 When All was working and what they deleted and took out in Regedit thats a start check all you're Manual How to Add that back I've check gpedit.msc – Local Group Policy Editor. and therss' No setting's for the In. |
Beta Was this translation helpful? Give feedback.
-
https://raw.githubusercontent.com/EnziTheViking/PrettyWinUtil/main/winutil.ps1 |
Beta Was this translation helpful? Give feedback.
-
{ |
Beta Was this translation helpful? Give feedback.
-
there in there I added a long time ago just trying to find the command settings to add. |
Beta Was this translation helpful? Give feedback.
-
{ |
Beta Was this translation helpful? Give feedback.
-
This is the triky one Microsft messed up "InvokeScript": [
|
Beta Was this translation helpful? Give feedback.
-
Write-Host "Install OneDrive" this one in reg endit they messed with the Calender and Clock you have to the functions of this what to "add" "HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2 |
Beta Was this translation helpful? Give feedback.
-
Basically, the old calendar view of windows 10 but with the look and feel of windows 11.
when you click on the date and time to see the calendar, in windows 10 it shows your events (agenda). but currently with explorerpatcher it would restore the look of windows 10.
i would like the feature to be more like windows 11 style but with windows 10 functionality.
Beta Was this translation helpful? Give feedback.
All reactions