标题:容器控件之Place控件使用范例
只看楼主
王杰
Rank: 2
等 级:新手上路
威 望:4
帖 子:307
专家分:0
注 册:2005-5-13
 问题点数:0 回复次数:0 
容器控件之Place控件使用范例

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace WebApplication
{
/// <summary>
/// WebForm1 的摘要说明。
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Panel Panel1;

private void Page_Load(object sender, System.EventArgs e)
{
//通过panel1控件添加一个标签
Label label1=new Label();
label1.Text="您好";
label1.ID="Label1";
Panel1.Controls.Add(label1);
Panel1.Controls.Add(new LiteralControl("<br><br>"));
}

#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion
}
}

搜索更多相关主题的帖子: Place 范例 控件 容器 
2005-11-20 10:30



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-34276-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.420510 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved