c#如何实现textbox中文本的下划线
c#如何实现像word文档中,文字的下划线。不是简单的在界面上划个细线,而且由用户在上面打字后自动在文字的下面加上下划线。谢谢...
c#如何实现像word文档中,文字的下划线。不是简单的在界面上划个细线,而且由用户在上面打字后自动在文字的下面加上下划线。谢谢
展开
8个回答
展开全部
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
<style type="text/css">
.dr
{ TEXT-DECORATION:underline;}
</style>
</head>
<body>
<form id="form1" runat="server" ondblclick="return form1_ondblclick()">
<div>
<asp:TextBox ID="TextBox1" CssClass="dr" runat="server"></asp:TextBox>
</div>
</form>
</body>
</html>
<head runat="server">
<title>无标题页</title>
<style type="text/css">
.dr
{ TEXT-DECORATION:underline;}
</style>
</head>
<body>
<form id="form1" runat="server" ondblclick="return form1_ondblclick()">
<div>
<asp:TextBox ID="TextBox1" CssClass="dr" runat="server"></asp:TextBox>
</div>
</form>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public class Class1:TextBox
{
public Class1()
{
this.BorderStyle = BorderStyle.None;
}
/// <summary>
/// 画线
/// </summary>
const int WM_PAINT = 0xF;
protected override void WndProc(ref Message m)
{
base.WndProc(ref m);
if (m.Msg == WM_PAINT)
{
using (Graphics g = this.CreateGraphics())
{
using (Pen p = new Pen(Color.Black))
{
g.DrawLine(p, 0, this.Height - 1, this.Width, this.Height - 1);
}
}
}
}
}
}
using System.Collections.Generic;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public class Class1:TextBox
{
public Class1()
{
this.BorderStyle = BorderStyle.None;
}
/// <summary>
/// 画线
/// </summary>
const int WM_PAINT = 0xF;
protected override void WndProc(ref Message m)
{
base.WndProc(ref m);
if (m.Msg == WM_PAINT)
{
using (Graphics g = this.CreateGraphics())
{
using (Pen p = new Pen(Color.Black))
{
g.DrawLine(p, 0, this.Height - 1, this.Width, this.Height - 1);
}
}
}
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
继承自TextBox,写成扩展控件即可实现.
也可以用freetextbox控件,这是一个第三方控件,有很多功能
也可以用freetextbox控件,这是一个第三方控件,有很多功能
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html
xmlns="http://www.w3.org/1999/xhtml">
<head
runat="server">
<title>无标题页</title>
<style
type="text/css">
.dr
{
TEXT-DECORATION:underline;}
</style>
</head>
<body>
<form
id="form1"
runat="server"
ondblclick="return
form1_ondblclick()">
<div>
<asp:TextBox
ID="TextBox1"
CssClass="dr"
runat="server"></asp:TextBox>
</div>
</form>
</body>
</html>
xmlns="http://www.w3.org/1999/xhtml">
<head
runat="server">
<title>无标题页</title>
<style
type="text/css">
.dr
{
TEXT-DECORATION:underline;}
</style>
</head>
<body>
<form
id="form1"
runat="server"
ondblclick="return
form1_ondblclick()">
<div>
<asp:TextBox
ID="TextBox1"
CssClass="dr"
runat="server"></asp:TextBox>
</div>
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
textBox1.Font = new Font(textBox1.Font.Name,textBox1.Font.Size, FontStyle.Underline);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询