Im slightly new at programming in Windows Forms applications - but my current goal is to provide a 'gadget-like' application, which will stick to the desktop. It must not be possible to minimize it (well, i remove titlebar, buttons and borders etc).
I can make one Form lower itself in zindex behind another Form window in the same application however, i dont seem to be able to do it relatively with other applications?
I also dont have it showing up in tab / processbar etc, it simply needs to be on the desktop - kind of like old content ActiveX Desktop or Sidebar gadgets...
Simplest code to perform on,
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.SendToBack();
this.Text = string.Empty;
this.ControlBox = false;
this.FormBorderStyle = FormBorderStyle.None;
//this.BackColor = Color.Transparent;
}
}
SendToBack does nothing for me though..
Any ideas? Meddle with DWM? Please let me know any ideas