程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> .NET 解決TabControl 頁裡面多余邊距問題經驗分享

.NET 解決TabControl 頁裡面多余邊距問題經驗分享

編輯:ASP.NET基礎
以下是解決方法:
1.直接新建一個類,繼承TabControl,然後 override DisplayRectangle 方法:
復制代碼 代碼如下:
/// <summary>
/// 解決系統TabControl多余邊距問題
/// </summary>
public class FullTabControl : TabControl {

public override Rectangle DisplayRectangle {
get {
Rectangle rect = base.DisplayRectangle;
return new Rectangle(rect.Left - 4, rect.Top - 4, rect.Width + 8, rect.Height + 7);
}
}
}

以後用 FullTabControl 就行。(這種方法簡單)


2.參見以下網址(VB.NET)代碼:

http://www.blueshop.com.tw/board/FUM20050124191756KKC/BRD201112281018075B8.html

C# 代碼為:

復制代碼 代碼如下:
public class FullTabControl : NativeWindow {
static int TCM_FIRST = 0x1300;
static int TCM_ADJUSTRECT = (TCM_FIRST + 40);
struct RECT{
public int Left, Top, Right, Bottom;
}

protected override void WndProc(ref Message m) {
if (m.Msg == TCM_ADJUSTRECT) {
RECT rc = (RECT)m.GetLParam(typeof(RECT));
rc.Left -= 4;
rc.Right += 3;
rc.Top -= 4;
rc.Bottom += 3;
Marshal.StructureToPtr(rc, m.LParam, true);
}

base.WndProc(ref m);
}
}


調用方法:new FullTabControl().AssignHandle(tabControl1.Handle);// tabControl1為窗口上TabControl控件的名稱

版權聲明作者:夏榮全
郵箱:lyout(at)163.com
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved