以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 请教,用代码设置文本框以下属性。 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=50956) |
-- 作者:ndxfke -- 发布时间:2014/5/15 21:14:00 -- 请教,用代码设置文本框以下属性。 用代码设置文本框的 字体、字号、颜色,后面代码应该怎么写呢?
Dim txt1 As WinForm.TextBox = e.Form.Controls("Textbox1")
txt1.font = *******
|
-- 作者:逛逛 -- 发布时间:2014/5/15 21:25:00 -- Dim tb As WinForm.TextBox = e.Form.Controls("TextBox1") Dim fnt As New Font("黑体",12,FontStyle.Underline) tb.Font = fnt tb.ForeColor = Color.red |
-- 作者:ndxfke -- 发布时间:2014/5/15 21:27:00 -- 多谢..逛逛 |