1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. C#實現將窗體固定在顯示器的左上角且不能移動的辦法

        時間:2024-07-14 12:29:34 硬件維護 我要投稿
        • 相關推薦

        C#實現將窗體固定在顯示器的左上角且不能移動的辦法

          本文實例講述了C#實現將窗體固定在顯示器的左上角且不能移動的方法。分享給大家供大家參考。具體實現方法如下:

          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.IO;using System.Runtime.InteropServices;namespace App{ public partial class Form4 : Form { public Form4() { InitializeComponent(); this.StartPosition = FormStartPosition.Manual; this.Location = new Point(0, 0); } protected override void WndProc(ref Message m) { base.WndProc(ref m); if (m.Msg == 0x84 && m.Result == (IntPtr)2) //不讓拖動標題欄 { m.Result = (IntPtr)1; } if (m.Msg == 0xA3) //雙擊標題欄無反應 { m.WParam = System.IntPtr.Zero; } } }}

          希望本文所述對大家的C#程序設計有所幫助。

        【C#實現將窗體固定在顯示器的左上角且不能移動的辦法】相關文章:

        顯示器通電無顯示的維修辦法05-27

        電腦顯示器黑屏的維修辦法09-21

        顯示器閃屏的原因與解決辦法07-31

        C# AutoResetEvent的使用10-29

        顯示器設置不當引起黑屏解決辦法02-16

        顯示器能點亮但是不能進系統的故障分析01-30

        WinXP啟動后顯示器無信號的解決辦法01-29

        電腦顯示器常見故障的原因及解決辦法09-15

        23.8寸顯示器最佳分辨率和調整辦法08-01

        更改硬盤傳輸模式不能進入系統的解決辦法12-16

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>