ppc程序启动时自动最小化问题
求助:ppc程序启动时自动最小化问题关于ppc程序启动时自动最小化。
代码如下:
using System;
using System.Collections.Generic;
using
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程序启动时程序自动最小化?
谢谢个位!