111,120
社区成员
发帖
与我相关
我的任务
分享using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication216
{
public partial class Form1 : Form
{
Form F = new Form();
public Form1()
{
InitializeComponent();
F.TopMost = true;
F.Show();
this.Activated += new EventHandler(Form1_Activated);
}
void Form1_Activated(object sender, EventArgs e)
{
F.Focus();
}
}
}