子コントロールでイベントが処理されるときに、MainPage.xaml.cs クラスでメソッドを呼び出す必要があります。ツリー内の最初の DependencyObject しか返されず、そこからthis.Parent
取得できないため、呼び出しは機能しません。PhoneApplicationPage
私の中に次のレイアウトがありますPhoneApplicationPage
:
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="AUTO"/>
<RowDefinition Height="*"/>
<RowDefinition Height="AUTO"/>
</Grid.RowDefinitions>
<Grid Height="85" VerticalAlignment="Top" Grid.Row="0"></Grid>
<Grid Grid.Row="1" Name="gridContent" />
<ug:UniformGrid Rows="1" Columns="5" Height="85" VerticalAlignment="Bottom" Grid.Row="2">
<tabs:TabItem Name="tabOverview" TabItemText="OVERVIEW" TabItemImage="overview_64.png" />
<tabs:TabItem Name="tabLogs" TabItemText="LOGS" TabItemImage="log_64.png"/>
</ug:UniformGrid>
</Grid>
次のコードを使用します。
public partial class MainPage : PhoneApplicationPage
{
public MainPage()
{
InitializeComponent();
gridContent.Children.Add(new OverviewUserControl());
}
public void UpdateContent(UserControl control)
{
// I need to call this method from the TabItem Tap event
gridContent.Children.Clear();
gridContent.Children.Add(control);
}
}
gridContent
タップ イベントが発生したら、ユーザーのタップに対応するものにコンテンツを置き換える必要があります。これは私がタップイベントを処理する方法です:
private void TabItem_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
// var parent = this.Parent; //<-- this doesn't get the PhoneApplicationPage
var ti = sender as TabItem;
if (ti != null)
{
string tab = "";
switch (ti.Name)
{
case "tabOverview":
// I need a reference to MainPage here to call
// MainPage.UpdateContent(new LogsUserControl())
break;
case "tabLogs":
// I need a reference to MainPage here to call
// MainPage.UpdateContent(new OverviewUserControl())
break;
}
}
}
質問
MainPage
では、 fromでメソッドを呼び出すにはどうすればよいTabItem_Tap
でしょうか。