1

Ok, I'm aware there's a lots of topis about this, but I haven't found anything that works for me.

My program generates a small picture that i would like to keep in a WinForm that's always at the bottom, "with the desktop". Something like the gadgets in windows 7.

How do i tell my form to always stay here, and just can't be visible over any other form/window?

Should'nt this be doable like in the form_load function for this window?

Like this

Private Sub Sticky_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Me.KeepMeAtTheBottomUntillIAmClosed
End Sub
4

1 回答 1

0

如果您创建一个没有边框和控件框的表单,用户将无法调整大小或移动它。然后添加您自己的按钮以允许它关闭,告诉它您想要它在哪里,然后tada!

您甚至可以添加一些鼠标悬停功能,以使工具在您悬停在表单上时出现。

于 2013-10-15T15:03:22.927 回答