ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









Paneldisposable

noshade="true" align="left" color="black">
System.Web.UI.WebControls (system.web.dll)class

This class represents a Panel control, which acts as a simple
container for other web controls. A panel is often used to group
related controls, such as RadioButton controls
that share the same RadioButton.GroupName. Panels
are also used to disable or hide entire groups of controls at once,
by setting the Visible or
Enabled property of the containing panel. They are
also useful for adding dynamically generated controls, as in
Panel1.Controls.Add(New
LiteralControl("<br>"));
.

You can set a background image for your panel by specifying a URL for
the BackImageUrl property. You can also type text
directly into a panel on the design-time surface in Visual Studio
.NET. Use the Wrap property to set whether this
content is wrapped. If it is not, the Panel is
automatically extended to the required width.

public class 

Panel : WebControl {
// Public Constructors
public

Panel ( );
// Public Instance Properties
public virtual string

BackImageUrl {set; get; }
public virtual HorizontalAlign

HorizontalAlign {set; get; }
public virtual bool

Wrap {set; get; }
// Protected Instance Methods
protected override void

AddAttributesToRender (System.Web.UI.HtmlTextWriter

writer ); // overrides WebControl
}



Hierarchy


System.Object
System.Web.UI.Control(System.ComponentModel.IComponent,
System.IDisposable
,
System.Web.UI.IParserAccessor,
System.Web.UI.IDataBindingsAccessor)

WebControl(System.Web.UI.IAttributeAccessor)
Panel


/ 873