I want to make a binary clock for Windows. But I want it to replace the default clock (having 2 clocks is unoptimal).
So one of the approaches is just to draw my binary clock on top of the old one. How do I do that? Using external libraries is allowed.
I've tried sth like this:
public Form1()
{
InitializeComponent();
this.Paint += new PaintEventHandler(Form1_Paint);
}
private void Form1_Paint(object sender, PaintEventArgs e)
{
e.Graphics.FillEllipse(new SolidBrush(Color.Blue), new Rectangle(1500, 790, 20, 20));
}
But it doesn't reach the taskbar (bottom right corner):
If it turns out to be impossible I'll make another question about deskbands. But for now I'm asking about drawing on Windows taskbar.