You could try subscribing to the shapes click event and then forwarding the event onto the "overlayed" window via some Windows APIs. If you have a pointer to the main window of the application (either you started it yourself via a Process object or you get it some other way) you can simply send mouse events to that window.
Here is an example that takes the current point of the screen and sends it to the first instance of Skype.
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = false)]
static extern IntPtr SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
[StructLayout(LayoutKind.Explicit)]
struct LParamLocation
{
[FieldOffset(0)]
int Number;
[FieldOffset(0)]
public short X;
[FieldOffset(2)]
public short Y;
public static implicit operator int(LParamLocation p)
{
return p.Number;
}
}
private void Form1_MouseClick(object sender, MouseEventArgs e)
{
var process = Process.GetProcessesByName("skype");
LParamLocation points = new LParamLocation();
points.X = (short)PointToScreen(e.Location).X;
points.Y = (short)PointToScreen(e.Location).Y;
SendMessage(process[0].MainWindowHandle, 0x201, 0, points); //MouseLeft down message
SendMessage(process[0].MainWindowHandle, 0x202, 0, points); //MouseLeft up message
}
Alternativly you could try adding a window style to tell it to pass through all mouse events.
[DllImport("user32.dll")]
static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
[DllImport("user32.dll")]
static extern int GetWindowLong(IntPtr hWnd, int nIndex);
protected override void OnHandleCreated(EventArgs e)
{
base.OnHandleCreated(e);
int style = GetWindowLong(Handle, -20);
style |= 0x00000020; // Enables Pass-Through of events
style |= 0x00080000; // Enables Pass-Through to layered windows
SetWindowLong(Handle, -20, style);
}
_ibrahimovic_amazing_bicycle/. And you need the link belownever heardshould not be clickable. Right? – Sami Nov 15 '12 at 18:56