0

子コントロールでイベントが処理されるときに、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でしょうか。

4

1 に答える 1

2

これでできました:

var currentPage = ((PhoneApplicationFrame)Application.Current.RootVisual).Content as MainPage;

使用法:

private void TabItem_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
    var currentPage = ((PhoneApplicationFrame)Application.Current.RootVisual).Content as MainPage;

    if (ti != null)
    {
        switch (ti.Name)
        {
            case "tabOverview":
                currentPage.UpdateContent(new OverviewUserControl());
                break;
            case "tabLogs":
                currentPage.UpdateContent(new LogsUserControl());
                break;
        }
    }
}
于 2013-11-14T12:41:22.583 に答える