Uploaded October 2020 | Updated September 2026, 1 week ago
How to display music controls in the notification shade and on the lock screen for the Google Pixel 4.
Android version 10.
Enabling music controls on the lock screen does require additional swipe up to unlock phone after face unlock.
Works for music apps I use:
+ Google Play Music
+ Pandora
+ YouTube Music (Device Files)
How to display music controls in the notification shade and on the lock screen for the Google Pixel 4.
Android version 10.
Enabling music controls on the lock screen does require additional swipe up to unlock phone after face unlock.
Works for music apps I use:
+ Google Play Music
+ Pandora
+ YouTube Music (Device Files)





![C# - Simulate mouse clicks with SendInput (codeproject implementation)
How I simulate left and right mouse clicks in Windows apps with C# SendInput function. A download from codeproject.com is used to build functions for LeftClick and RightClick.
InputSender Download:
https://www.codeproject.com/Articles/5264831/How-to-Send-Inputs-using-Csharp
C# Automation Playlist:
https://youtube.com/playlist?list=PLAW4P1Sb_oJbIJIQd8-HPmsVUE6Ez6NFL&si=3rb4bQHNPmHYsaXs
#csharp
private void LeftClick(int x, int y)
{
InputSender.SetCursorPosition(x, y);
InputSender.SendMouseInput(new InputSender.MouseInput[]
{
new InputSender.MouseInput
{
dwFlags = (uint)InputSender.MouseEventF.LeftDown
}
});
Thread.Sleep(100);
InputSender.SendMouseInput(new InputSender.MouseInput[]
{
new InputSender.MouseInput
{
dwFlags = (uint)InputSender.MouseEventF.LeftUp
}
});
} C# - Simulate mouse clicks with SendInput (codeproject implementation)](https://i.ytimg.com/vi/qv1QcXO0v-M/mqdefault.jpg)




