博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
铵钮的文本换行显示
阅读量:6358 次
发布时间:2019-06-23

本文共 1313 字,大约阅读时间需要 4 分钟。

看看下动画效果:

 

C#有一个类System.Environment,它有一个NewLine静态Get属性,即可实现换行。

 

OK,知道有这个功能后,我们就可以文本换行了,我们在Default.aspx放一个按钮,参考下第12行。

ExpandedBlockStart.gif
View Code
 1 
<%
@ Page Language
=
"
C#
"
 AutoEventWireup
=
"
true
"
 CodeFile
=
"
Default.aspx.cs
"
 Inherits
=
"
_Default
"
 
%>
 2 
 3 
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
 4 
 5 
<
html 
xmlns
="http://www.w3.org/1999/xhtml"
>
 6 
<
head 
runat
="server"
>
 7     
<
title
></
title
>
 8 
</
head
>
 9 
<
body
>
10     
<
form 
id
="form1"
 runat
="server"
>
11     
<
div
>
12         
<
asp:Button 
ID
="Button1"
 runat
="server"
 Text
=""
 
/>       
13     
</
div
>
14     
</
form
>
15 
</
body
>
16 
</
html
>

 

然后在cs写:

ExpandedBlockStart.gif
View Code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public 
partial 
class _Default : System.Web.UI.Page
{
    
protected 
override 
void OnInit(EventArgs e)
    {
        
base.OnInit(e);
        
this.Button1.Text = 
"
Hi,Insus.NET,
" + Environment.NewLine + 
"
请用Mouse点击我
";
        
this.Button1.Click +=Button1_Click;
    }
    
    
protected 
void Page_Load(
object sender, EventArgs e)
    {
    }
    
private 
void Button1_Click(
object sender, EventArgs e)
    {
        Page.ClientScript.RegisterClientScriptBlock(
this.GetType(), 
"
this
"
"
<script>alert('看看,按钮的Text换行显示。');</script>
");
    }
}

 

下面补充于2012-11-01 20:29,可以用此方法实现垂直铵钮。

 

转载地址:http://knfma.baihongyu.com/

你可能感兴趣的文章
Ubuntu 部署Django, Wagtail,Postgres, Nginx, Gunicorn,Supervisor
查看>>
女神特辑|关于DevOps和职场,4位DevOps杰出女性都关注啥?
查看>>
mongodb配置语句命令
查看>>
理解Netty中的零拷贝(Zero-Copy)机制
查看>>
mysql-5.5.25-winx64安装步骤
查看>>
PHP采集用到的几个实用函数
查看>>
django 中文报错
查看>>
名片识别
查看>>
No Hibernate Session bound to thread...问题解决
查看>>
eclipse debug调试mapreduce程序
查看>>
boost链接错误
查看>>
zookeeper安装
查看>>
Linux下添加新硬盘,分区及挂载
查看>>
Preferences
查看>>
Openfire 用户离线、断线 及心跳检测
查看>>
JAVA反射机制
查看>>
Intent 跳转调用其他软件
查看>>
Android Ftp
查看>>
基于华为防火墙双机热备
查看>>
rsync 只拷贝 同步 指定的文件 filter规则
查看>>