我正在尝试在WebForms中创建我的第一个自定义控件。
我这样定义了我的类:(DeviceRow.ascx.cs)
public partial class DeviceRow : System.Web.UI.WebControls.Panel
{
protected void Page_Load(object sender, EventArgs e)
{
this.BorderStyle = System.Web.UI.WebControls.BorderStyle.Solid;
}
}
我将其标记为:(DeviceRow.ascx)
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="DeviceRow.ascx.cs" Inherits="VMS_Calc.DeviceRow" %>
<asp:Button ID="Button1" runat="server" Text="X" Width="28px" />
<asp:DropDownList ID="ddl_Type" runat="server"></asp:DropDownList>
<asp:DropDownList ID="ddl_Mfg" runat="server"></asp:DropDownList>
<asp:TextBox ID="tb_FPS" runat="server" Width="40px">15</asp:TextBox>
我试图像这样使用它:( Default.aspx)
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
<section style="vertical-align: middle">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<vmsc:DeviceRow ID="DeviceRow11" runat="server"> </vmsc:DeviceRow>
<br />
<br />
<asp:Button ID="Button1" runat="server"
Text="Click Me" OnClick="Button1_Click" />
</ContentTemplate>
</asp:UpdatePanel>
</section>
</asp:Content>
页面上出现“Click Me”按钮,但我的DeviceRow面板却没有。 (没有错误)
我错过了什么?
答案 0 :(得分:1)
使用控件,就像你提到的那样,
请更改以下行
public partial class DeviceRow : System.Web.UI.WebControls.Panel
到
public partial class DeviceRow : System.Web.UI.UserControl
答案 1 :(得分:0)
创建用户控件时,您负责创建属性并维护该控件的状态。在这里,您需要一个BorderStyle属性作为您的控件。我会这样做:
DeviceRow.ascx
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="DeviceRow.ascx.cs" Inherits="VMS_Calc.DeviceRow" %>
<asp:Panel ID="pnlContainer" runat="server" >
<asp:Button ID="Button1" runat="server" Text="X" Width="28px" />
<asp:DropDownList ID="ddl_Type" runat="server"></asp:DropDownList>
<asp:DropDownList ID="ddl_Mfg" runat="server"></asp:DropDownList>
<asp:TextBox ID="tb_FPS" runat="server" Width="40px">15</asp:TextBox>
</asp:Panel>
DeviceRow.ascx.cs
using System;
using System.Web.UI.WebControls;
namespace VMS_Calc
{
public partial class DeviceRow : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Page_PreLoad(object sender, EventArgs e)
{
pnlContainer.BorderStyle = this.BorderStyle;
}
public BorderStyle BorderStyle
{
get {
if (ViewState["MyBorderStyle"] != null)
{
return(BorderStyle)ViewState["MyBorderStyle"];
}
return System.Web.UI.WebControls.BorderStyle.None;
}
set
{
ViewState["MyBorderStyle"] = value;
pnlContainer.BorderStyle = value;
}
}
}
}
当我添加usercontrol时,它的BorderStyle属性在标记中也可用 在代码中:
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
<section style="vertical-align: middle">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<vmsc:DeviceRow ID="DeviceRow11" BorderStyle="Solid" runat="server"> </vmsc:DeviceRow>
<br />
<br />
<asp:Button ID="Button1" runat="server"
Text="Click Me" OnClick="Button1_Click" />
</ContentTemplate>
</asp:UpdatePanel>
</section>
</asp:Content>
protected void Button1_Click(object sender, EventArgs e)
{
DeviceRow11.BorderStyle = BorderStyle.None;
}
您应该继续使用不同的属性,甚至可以查看如何管理用户控件的事件。