我有这样的代码:
public form()
{
InitializeComponent();
init(); //read ini and try to minimize
}
private void timer1_Tick(object sender, EventArgs e)
{
}
并在ini方法中我最小化形式并隐藏它(在调试中我可以看到form.visible = false),但是当它离开init方法然后它跳转到计时器并改变visible = true我可以在任务栏中看到我的应用程序和托盘。我想只看到托盘图标。 我使用this将表单最小化为托盘。
到目前为止,我做了这个,但可能是以错误的方式实现的,因为当表单显示形式像刷新时,它看起来很奇怪。
private void notifyIcon1_Click(object sender, EventArgs e)
{
this.Show();
this.WindowState = FormWindowState.Normal;
}
private void minimizeWindow()//this method is called on form resize
{
if (FormWindowState.Minimized == this.WindowState)
{
notifyIcon1.Visible = true;
this.Hide();
this.ShowInTaskbar = false;
}
else if (FormWindowState.Normal == this.WindowState)
{
notifyIcon1.Visible = false;
this.ShowInTaskbar = true;
}
}
答案 0 :(得分:1)
要从任务栏隐藏窗口,您可以使用ShowInTaskbar
属性。在init
方法中试试这个:
form.ShowInTaskbar = false;
答案 1 :(得分:0)
如果您的程序设置为最小化到系统托盘,则可以在加载时添加最小化事件!
或者您可以在加载时添加Me.Opacity = 0
(再次点击系统托盘图标时再显示Me.Opacity = 1
),然后隐藏任务栏按钮!
答案 2 :(得分:0)
解决方案很简单:
private void notifyIcon1_Click(object sender, EventArgs e)
{
this.Show();
this.WindowState = FormWindowState.Normal;
}
private void minimizeWindow()
{
if (FormWindowState.Minimized == this.WindowState)
{
notifyIcon1.Visible = true;
this.Hide();
}
else if (FormWindowState.Normal == this.WindowState)
{
notifyIcon1.Visible = false;
}
}
和
private void AAL_Load(object sender, EventArgs e)
{
minimizeWindow();//call it again
}
不要使用form.ShowInTaskbar = false;因为那会产生很多问题。