コード例 #1
0
        public Virtual_window_manager()
        {
            InitializeComponent();
            this.Size = new Size(SystemInformation.WorkingArea.Width, 33);
            Init();
            this.ShowInTaskbar = false;
            Vvm_Wins wns = new Vvm_Wins();

            wns.Show();
        }
コード例 #2
0
        public Virtual_window_manager()
        {
            this.DoubleBuffered  = true;
            this.FormBorderStyle = FormBorderStyle.None;
            this.ShowIcon        = false;
            this.ShowInTaskbar   = false;
            this.Location        = new Point(0, 0);
            InitializeComponent();
            this.Size = new Size(SystemInformation.WorkingArea.Width, 33);
            Init();
            Vvm_Wins wns = new Vvm_Wins();

            wns.Show();
        }