using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
namespace WinFormClock
{
public partial class FormClock : Form
{
#region
private NotifyIcon notifyInfo;
private Timer timerInfo;
#endregion
public FormClock()
{
#region
InitializeComponent();
this.TopMost = true; // 将窗体显示为最顶层窗体。
this.ShowInTaskbar = false; // 在 Windows 任务栏中隐藏窗体。
this.DoubleBuffered = true; // 双缓冲绘制图面, 以减少或避免闪烁。
this.AutoScaleMode = AutoScaleMode.None; // 禁用自动缩放。
this.FormBorderStyle = FormBorderStyle.None; // 窗体无边框。
this.Size = new Size(200, 200);