C# WinForm下,隐藏主窗体的方法
Posted 代码描绘人生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# WinForm下,隐藏主窗体的方法相关的知识,希望对你有一定的参考价值。
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; namespace GethtmlContent { public partial class Form1 : Form { public Form1() { InitializeComponent(); this.WindowState = FormWindowState.Minimized; this.ShowInTaskbar = false; SetVisibleCore(false); } protected override void SetVisibleCore(bool value) { base.SetVisibleCore(value); } private void Form1_Load(object sender, EventArgs e) { } } }
以上是关于C# WinForm下,隐藏主窗体的方法的主要内容,如果未能解决你的问题,请参考以下文章