Panel.Content プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
デバイス固有のコンテンツを格納しているパネルを返します。 コンテンツ テンプレートを定義して、ターゲット デバイス用に選択しておく必要があります。 この API は、互換性のために残されています。 ASP.NET モバイル アプリケーションを開発する方法については、「ASP.NET を使用した Mobile Apps & サイト」を参照してください。
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 ファイルに追加する必要もあります。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET