回 帖 发 新 帖 刷新版面

主题:ppc程序启动时自动最小化问题

求助:ppc程序启动时自动最小化问题
关于ppc程序启动时自动最小化。
代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace hello02
{
    public partial class Form1 : Form
    {
        [DllImport("coredll")]
        private static extern bool ShowWindow(IntPtr hwnd, int nCmdShow);
        private const int SW_MINIMIZE = 6;
        public Form1()
        {
            InitializeComponent();
        }
        private void button1_Click(object sender, EventArgs e)
        {
        }
        private void miniwindows(object sender, EventArgs e)
        {
            MessageBox.Show("start!");
            ShowWindow(this.Handle, SW_MINIMIZE);
        }
        private void button3_Click(object sender, EventArgs e)
        {
            ShowWindow(this.Handle, SW_MINIMIZE);
        }
        private void button2_Click(object sender, EventArgs e)
        {
            try
            {
                this.Close();
            }
            catch
            {
                // MessageBox.Show("系统退出失败!");
            }
        }
    }
}

运行结果:
1、程序启动了,miniwindows函数执行了,但程序没有最小化;
2、点击button3,程序最小化。

求助如何ppc程序启动时程序自动最小化?

谢谢个位!

回复列表 (共3个回复)

沙发

没看见你哪里调用miniwindows了啊

板凳


解决方法1:使用定时器

using System.Windows.Forms;



System.Windows.Forms.Timer timer = new System.Windows.Forms.Timer(); 



 timer.Interval = 1000; 
 timer.Tick += delegate(object o, EventArgs args) 

        DoWork(); 
 };

private void DoWork()
 {
            ShowWindow(this.Handle, SW_MINIMIZE);
}


另,在#region Windows 窗体设计器生成的代码 this.Load += new System.EventHandler(this.miniwindows);
这里调用了miniwindows函数。
谢谢楼上的。

3 楼

我认为第一种方法可以,
第二种this.Load += new System.EventHandler(this.miniwindows);
是不行的。


我记得好像要在Form1_Load()执行完后调用最小化才可以。

???

我来回复

您尚未登录,请登录后再回复。点此登录或注册