VS2005小技巧收集(一).docxVIP

  • 0
  • 0
  • 约6.06千字
  • 约 4页
  • 2022-07-30 发布于上海
  • 举报
window 命令大全 如何创建一个可改变大小没有标题栏的窗体? (How to create a form with resizing borders and no title bar?) form1.Text = string. Empty; form1.ControlBox = false; 如何在.NET 的 Windows 窗体上启用 XP 主题集? (How to use XP Themes with Windows Forms using the .NET?) 确认你的控件中 FlatStyle 属性已经修改为 System,再修改 Main 方法。 static void Main() { Application.EnableVisualStyles(); Application.DoEvents(); Application. Run(new Form1()); } 3. 如何为一个窗体设置一个默认按钮? (How to set the default button for a form?) form1.AcceptButton = button1; 如何为一个窗体设置一个取消按钮? (How to set the Cancel button for a form?) form1.CancelButton = button1; 如何阻止一个窗体标题显示在任务栏

文档评论(0)

1亿VIP精品文档

相关文档