Panel.Content 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回包含设备特定的内容的面板。 必须定义一个内容模板并选用于目标设备。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。
public:
property System::Web::UI::MobileControls::Panel ^ Content { System::Web::UI::MobileControls::Panel ^ get(); };
[System.ComponentModel.Bindable(false)]
[System.ComponentModel.Browsable(false)]
public System.Web.UI.MobileControls.Panel Content { get; }
[<System.ComponentModel.Bindable(false)>]
[<System.ComponentModel.Browsable(false)>]
member this.Content : System.Web.UI.MobileControls.Panel
Public ReadOnly Property Content As Panel
属性值
包含设备特定的面板内容的面板。
- 属性
示例
下面的代码示例演示如何在页面加载时使用 Content 属性查找控件。
注意
下面的代码示例使用单文件代码模型,如果直接复制到代码隐藏文件中,可能无法正常工作。 必须将此代码示例复制到扩展名为 .aspx 的空文本文件中。 有关详细信息,请参阅 ASP.NET Web 窗体页代码模型。
<%@ Page Language="C#"
Inherits="System.Web.UI.MobileControls.MobilePage" %>
<%@ Register TagPrefix="mobile"
Namespace="System.Web.UI.MobileControls"
Assembly="System.Web.Mobile" %>
<%@ Import Namespace="System.Drawing" %>
<script runat="server">
public void Page_Load(Object sender, EventArgs e)
{
// Set Panel1 properties
Panel1.Wrapping = Wrapping.NoWrap;
Panel1.Alignment = Alignment.Center;
Panel1.StyleReference = "title";
// Find Label in Panel2
Control ctl = Panel2.Content.FindControl("lblStatusToday");
if (ctl != null)
((System.Web.UI.MobileControls.Label)ctl).Text
= "I found this label";
}
public void MakeFontRed(Object sender, EventArgs e)
{
Panel1.ForeColor = Color.Red;
}
public void MakeFontBlue(Object sender, EventArgs e)
{
Panel1.ForeColor = Color.Blue;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<mobile:Form runat="server" id="Form1">
<!-- First Panel -->
<mobile:Panel runat="server" id="Panel1">
<mobile:TextView runat="server" id="TextView1">
A Panel provides a grouping mechanism<br />
for organizing controls.
</mobile:TextView>
</mobile:Panel>
<mobile:Command runat="server" id="Command1" BreakAfter="false"
Text="Make Font Red" OnClick="MakeFontRed"/>
<mobile:Command runat="server" id="Command2" BreakAfter="true"
Text="Make Font Blue" OnClick="MakeFontBlue"/>
<!-- Second Panel -->
<mobile:Panel ID="Panel2" Runat="server">
<mobile:DeviceSpecific id="DeviceSpecific1" runat="server">
<!-- Filter and template for HTML32 devices -->
<Choice Filter="isHTML32"
Xmlns="http://schemas.microsoft.com/mobile/html32template">
<ContentTemplate>
<mobile:Label id="Label1" runat="server">
HTML32 Template</mobile:Label>
<mobile:Label ID="lblStatusToday" Runat="server"/>
</ContentTemplate>
</Choice>
<!-- Default filter and template -->
<Choice>
<ContentTemplate>
<mobile:Label ID="Label1" Runat="server">
Default Template</mobile:Label>
<mobile:Label ID="lblStatusToday" Runat="server" />
</ContentTemplate>
</Choice>
</mobile:DeviceSpecific>
</mobile:Panel>
</mobile:Form>
</body>
</html>
还需要将此部分添加到 Web.config 文件: