主頁 > 知識庫 > .NET 解決TabControl 頁里面多余邊距問題經(jīng)驗分享

.NET 解決TabControl 頁里面多余邊距問題經(jīng)驗分享

熱門標(biāo)簽:銅川小型外呼系統(tǒng)運營商 地圖標(biāo)注多個行程 廈門商鋪地圖標(biāo)注 海外地圖標(biāo)注門市標(biāo) 陜西人工外呼系統(tǒng)哪家好 云南外呼電銷機(jī)器人系統(tǒng) 浙江外呼系統(tǒng)怎么安裝 上海楊浦怎么申請申請400電話 山西防封卡電銷卡套餐
以下是解決方法:
1.直接新建一個類,繼承TabControl,然后 override DisplayRectangle 方法:
復(fù)制代碼 代碼如下:

/// summary>
/// 解決系統(tǒng)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.參見以下網(wǎng)址(VB.NET)代碼:

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

C# 代碼為:

復(fù)制代碼 代碼如下:

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);
}
}


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

版權(quán)聲明作者:夏榮全
郵箱:lyout(at)163.com

標(biāo)簽:許昌 自貢 西雙版納 萊蕪 常州 朔州 信陽 孝感

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《.NET 解決TabControl 頁里面多余邊距問題經(jīng)驗分享》,本文關(guān)鍵詞  .NET,解決,TabControl,頁,里面,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《.NET 解決TabControl 頁里面多余邊距問題經(jīng)驗分享》相關(guān)的同類信息!
  • 本頁收集關(guān)于.NET 解決TabControl 頁里面多余邊距問題經(jīng)驗分享的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章