1、新建一个窗体程序,添加一个Timer控件以及设置它可用并绑定事件。
2、设置窗体的TopMost属性为True
3、然后设置代码如下即可实现
using System;
using System.Windows.Forms;
using Socket.Common.Entity;
using System.Runtime.InteropServices;
using BizReview.Win32;
namespace Test.Tip
{
public partial class Form1 : Form
{
private int i = 0;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void timer1_Tick(object sender, EventArgs e)
{
this.TopMost = false;
this.BringToFront();
this.TopMost = true;
if (i>5)
{
timer1.Enabled = false;
}
i++;
}
}
}