无法获得基本的汉堡大师详细信息视图

时间:2016-12-25 15:31:58

标签: xamarin xamarin.forms portable-class-library

在查看了所有问题和论坛之后,我仍然无法通过汉堡图标获取我的主详细信息页面。如果我使用此主详细信息页面作为应用程序启动,那么我看到功能按预期工作。请看下面的代码

DashBoadCreator.xaml `

<MasterDetailPage.Master>

</MasterDetailPage.Master>

<MasterDetailPage.Detail>

  </x:Arguments>
</NavigationPage>
</MasterDetailPage.Detail>
`

`public partial class DashBoadCreator : MasterDetailPage
{
DashboardMaster master;
DashboardDetail1 detil;
public DashBoadCreator()
{
InitializeComponent();
master = new DashboardMaster();
detil = new DashboardDetail1();

        Master = master;
        Master.Title = "this is a title";
        Master.Icon = "icon.png";
        Detail = new NavigationPage(detil);

    }

    // Event for Menu Item selection, here we are going to handle navigation based
    // on user selection in menu ListView

}`
DashboadMaster.xaml
`

<!-- 
         This StackLayout you can use for other
         data that you want to have in your menu drawer

    <StackLayout BackgroundColor="#e74c3c"
                 HeightRequest="75">

      <Label Text="Some Text title"
             FontSize="20"
             VerticalOptions="CenterAndExpand"
             TextColor="White"
             HorizontalOptions="Center"/>
    </StackLayout>         -->

<ListView x:Name="navigationDrawerList"
          RowHeight="60"
          SeparatorVisibility="None"
          BackgroundColor="#e8e8e8"
          ItemSelected="OnMenuItemSelected">

  <ListView.ItemTemplate>
    <DataTemplate>
      <ViewCell>

        <!-- Main design for our menu items -->
        <StackLayout VerticalOptions="FillAndExpand"
                     Orientation="Horizontal"
                     Padding="20,10,0,10"
                     Spacing="20">

          <Image Source="{Binding Icon}"
                 WidthRequest="40"
                 HeightRequest="40"
                 VerticalOptions="Center" />

          <Label Text="{Binding Title}"
                 FontSize="Medium"
                 VerticalOptions="Center"
                 TextColor="Black"/>
        </StackLayout>
      </ViewCell>
    </DataTemplate>
  </ListView.ItemTemplate>
</ListView>
`

`public partial class DashboardMaster:ContentPage {

public List<MasterPageItem> menuList { get; set; }

public DashboardMaster()
{
    Title = "samples";
    InitializeComponent();

    menuList = new List<MasterPageItem>();

    // Creating our pages for menu navigation
    // Here you can define title for item, 
    // icon on the left side, and page that you want to open after selection
    var page1 = new MasterPageItem() { Title = "Item 1", Icon = "itemIcon1.png", TargetType = typeof(DashboardDetail1) };
    var page2 = new MasterPageItem() { Title = "Item 2", Icon = "itemIcon2.png", TargetType = typeof(DashboardDetail1) };
    var page3 = new MasterPageItem() { Title = "Item 3", Icon = "itemIcon3.png", TargetType = typeof(DashboardDetail1) };
    var page4 = new MasterPageItem() { Title = "Item 4", Icon = "itemIcon4.png", TargetType = typeof(DashboardDetail1) };
    var page5 = new MasterPageItem() { Title = "Item 5", Icon = "itemIcon5.png", TargetType = typeof(DashboardDetail1) };
    var page6 = new MasterPageItem() { Title = "Item 6", Icon = "itemIcon6.png", TargetType = typeof(DashboardDetail1) };
    var page7 = new MasterPageItem() { Title = "Item 7", Icon = "itemIcon7.png", TargetType = typeof(DashboardDetail1) };
    var page8 = new MasterPageItem() { Title = "Item 8", Icon = "itemIcon8.png", TargetType = typeof(DashboardDetail1) };
    var page9 = new MasterPageItem() { Title = "Item 9", Icon = "itemIcon9.png", TargetType = typeof(DashboardDetail1) };

    // Adding menu items to menuList
    menuList.Add(page1);
    menuList.Add(page2);
    menuList.Add(page3);
    menuList.Add(page4);
    menuList.Add(page5);
    menuList.Add(page6);
    menuList.Add(page7);
    menuList.Add(page8);
    menuList.Add(page9);

    // Setting our list to be ItemSource for ListView in MainPage.xaml
    navigationDrawerList.ItemsSource = menuList;
    //Application.Current.MainPage = new DashboardMaster();
    // NavigationPage.SetHasNavigationBar(this, false);

}
private void OnMenuItemSelected(object sender, SelectedItemChangedEventArgs e)
{
    DashBoadCreator creator = new DashBoadCreator();

    var item = (MasterPageItem)e.SelectedItem;
    Type page = item.TargetType;

    creator.Detail = new NavigationPage((Page)Activator.CreateInstance(page));
    creator.IsPresented = false;
}

}

<ListView.ItemTemplate>


          <Image Source="{Binding Icon}"
                    WidthRequest="40"
                    HeightRequest="40"
                    VerticalOptions="Center" />

          <Label Text="{Binding Title}"
                 FontSize="Medium"
                 VerticalOptions="Center"
                 TextColor="Black"/>
         <!-- <Label Text="{Binding Description}"
                 FontSize="Small"
                 VerticalOptions="End"/>-->
          <StackLayout VerticalOptions="End" HorizontalOptions="End">
            <Button Text="Apply" FontSize="10"  TextColor="Green" BorderWidth="1" HorizontalOptions="End" />
          </StackLayout>
        </StackLayout>

      </ViewCell>
    </DataTemplate>
  </ListView.ItemTemplate>

</ListView>

3 个答案:

答案 0 :(得分:1)

设置母版页图标以查看汉堡包图标

示例代码:

public masterpage()
{
     Icon = "hamburger.png";
}

答案 1 :(得分:0)

我在一些不同的tutos之后编写了一个工作演示,并获得了最重要的部分。所以,至少对我来说,这是一个简单的演示,我可以得到它。

检查此链接。

My github working demo

其中Intervection是随机详细信息页面(按参数构造)。

让我知道你可能有任何疑问。

干杯队友。圣诞快乐。

答案 2 :(得分:0)

经过一番调查后,我得出了这个讨论

Missing menu button on MasterDetailPage when assigning App.MainPage

使用这些发现我改变了我的app.xaml.cs,如下所示

 MainPage = new NavigationPage(new MenuPage());
 MasterDetailTest.App.Current.MainPage.Navigation.PushAsync(new MainPage());

现在Master页面始终是根页面,汉堡包菜单按预期工作。对于有这个问题的其他人,希望这能以某种方式帮助你