上圖:
ok,**貼上:網上找到的例子 修改了 邊框borderstyle 加了乙個all,和邊框線條寬度。
using system;
using system.collections.generic;
using system.text;
using system.windows.forms;
using system.componentmodel;
using system.drawing;
namespace mmdesk.mainform.controls
protected override createparams createparams
}#region 預先定義訊息
[flags]
public enum bordertype : int
#endregion
#region 屬性
bordertype _linetype;
///
/// 要繪製的邊框
///
[description("要繪製的邊框"), defaultvalue(bordertype.none)]
public bordertype linetype
set
}color _linecolor;
///
/// 繪製的邊框顏色
///
[description("繪製的邊框顏色")]
public color linecolor
set}
int _linewidth;
///
/// 繪製的邊框寬度
///
[description("繪製的邊框寬度")]
public int linewidth
set}
#endregion
[system.runtime.interopservices.dllimport("user32.dll")]
private static extern intptr getwindowdc(intptr hwnd);
[system.runtime.interopservices.dllimport("user32.dll")]
static extern int releasedc(intptr hwnd, intptr hdc);
///
/// 重寫訊息處理
///
/// 訊息
protected override void wndproc(ref message m)}}
}
滑鼠滑過文字產生光flash效果
效果 學習滑鼠劃過文字產生的特效。01 新建flash文件,背景色 645646,幀頻30,大小 150 50 02 檔案 匯入 匯入到舞台 匯入一幅位圖。原檔案中此位圖為透明背景下圖中底色為我們設定的背景色 03 選中匯入的點陣圖,右鍵轉換為元件,命名為 文字 型別 圖形。ctrl b 打散位圖,...
input文字框的提示效果
input文字框的提示有很多種,可以根據需求進行選擇 通過設定placeholder屬性值進行提示 placeholder 屬性提供可描述輸入字段預期值的提示資訊 hint 該提示會在輸入欄位為空時顯示,並會在字段獲得焦點時消失。例如 通過設定title屬性進行提示 title 屬性規定關於元素的額...
Javascript設定和獲取文字框滑鼠位置
最近在csdn問答板塊看到了乙個問題 如何實現textarea中輸入 在右下方出現乙個提示框?主要難點是游標所在的位置,網上找了下,大多是獲取游標所在的字元位數,而不是距離開頭的寬高,所以捨棄。但是本文還是需要這個技術,來判斷游標是不是在文字最後。輸入框獲取游標 function getpositi...