时间:2016-02-16 01:06 来源: 我爱IT技术网 作者:佚名
欢迎您访问我爱IT技术网,今天小编为你分享的编程技术是:【asp.net中简体转繁体实现代码】,下面是详细的讲解!
asp.net中简体转繁体实现代码
//Form1.Designer.cs
namespace TestEnCode
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components=null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components !=null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.txtSource=new System.Windows.Forms.TextBox();
this.txtResult=new System.Windows.Forms.TextBox();
this.button1=new System.Windows.Forms.Button();
this.label1=new System.Windows.Forms.Label();
this.label2=new System.Windows.Forms.Label();
this.SuspendLayout();
//
// txtSource
//
this.txtSource.Location=new System.Drawing.Point(75, 26);
this.txtSource.Name="txtSource";
this.txtSource.Size=new System.Drawing.Size(100, 22);
this.txtSource.TabIndex=0;
//
// txtResult
//
this.txtResult.Location=new System.Drawing.Point(75, 126);
this.txtResult.Name="txtResult";
this.txtResult.Size=new System.Drawing.Size(100, 22);
this.txtResult.TabIndex=1;
//
// button1
//
this.button1.Location=new System.Drawing.Point(75, 78);
this.button1.Name="button1";
this.button1.Size=new System.Drawing.Size(75, 23);
this.button1.TabIndex=2;
this.button1.Text="简繁转换";
this.button1.UseVisualStyleBackColor=true;
this.button1.Click +=new System.EventHandler(this.button1_Click);
//
// label1
//
this.label1.AutoSize=true;
this.label1.Location=new System.Drawing.Point(23, 29);
this.label1.Name="label1";
this.label1.Size=new System.Drawing.Size(41, 12);
this.label1.TabIndex=3;
this.label1.Text="转换源";
//
// label2
//
this.label2.AutoSize=true;
this.label2.Location=new System.Drawing.Point(12, 136);
this.label2.Name="label2";
this.label2.Size=new System.Drawing.Size(53, 12);
this.label2.TabIndex=4;
this.label2.Text="转换结果";
//
// Form1
//
this.AutoScaleDimensions=new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode=System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize=new System.Drawing.Size(320, 277);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.button1);
this.Controls.Add(this.txtResult);
this.Controls.Add(this.txtSource);
this.Name="Form1";
this.Text="简繁体转换测试";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtSource;
private System.Windows.Forms.TextBox txtResult;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
}
}
关于asp.net中简体转繁体实现代码的用户互动如下:
相关问题:
答: >>详细
相关问题:
答: >>详细
相关问题:
答: >>详细
- 【asp】asp.net url重写浅谈-net-url重写
- 【DataSet】DataSet、DataTable、DataRow区别详解
- 【asp】asp.net 动态添加多个用户控件-net-动态添
- 【ASP】ASP.NET中内嵌页面代码的一个问题-NET-内
- 【As】Asp.net中的页面乱码的问题-sp--pn-ne-et
- 【增加记录】asp.net中获取新增加记录的ID Access
- 【创建】ASP.NET Web API教程 创建域模型的方法详
- 【Asp】Asp.net 页面调用javascript变量的值-net-
- 【ASP】ASP.NET 5升级后如何删除旧版本的DNX-NET5
- 【404页面】ASP.NET设置404页面返回302HTTP状态码
- 评论列表(网友评论仅供网友表达个人看法,并不表明本站同意其观点或证实其描述)
-
