111,123
社区成员
发帖
与我相关
我的任务
分享
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace WindowsFormsApplication28
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
protected override CreateParams CreateParams
{
get
{
int WS_CAPTION = 0xC00000;
int WS_BORDER = 0x800000;
CreateParams CP = base.CreateParams;
CP.Style &= ~WS_CAPTION | WS_BORDER;
return CP;
}
}
}
}