博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
xamarin.forms 主明细界面
阅读量:5115 次
发布时间:2019-06-13

本文共 1520 字,大约阅读时间需要 5 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Reflection.Emit;using System.Text;using Xamarin.Forms;namespace PageApp{    public class MainMasterPage : MasterDetailPage    {        public MainMasterPage()        {            Label header = new Label            {                Text = "MasterDetailPage",                Font = Font.BoldSystemFontOfSize(30),                HorizontalOptions = LayoutOptions.Center            };            int[] a = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 11, 11, 22, 112 };            ListView listView = new ListView            {                ItemsSource = a            };            listView.ItemSelected += ListView_ItemSelected;            Master = new ContentPage            {                Title = header.Text,                Content = new StackLayout                {                    Children =                    {                        header,                        listView                    }                }            };            Detail = new ContentPage() { Content = new Label() { Text = "测试" } };        }        private void ListView_ItemSelected(object sender, SelectedItemChangedEventArgs e)        {            this.Detail = new ContentPage() { Content = new Label() { Text =  e.SelectedItem.ToString() } };            //if (Device.OS == TargetPlatform.Android)            //{            //    this.Navigation.PopAsync();                            //}        }    }}

  

转载于:https://www.cnblogs.com/iaisoft/p/6530717.html

你可能感兴趣的文章
设置java web工程中默认访问首页的几种方式
查看>>
ASP.NET MVC 拓展ViewResult实现word文档下载
查看>>
jQuery Mobile笔记
查看>>
8、RDD持久化
查看>>
第二次团队冲刺--2
查看>>
查询数据(后台到前台传递数据,显示数据)
查看>>
集群tomcat+apache配置文档
查看>>
VMware Tools安装
查看>>
Linux上架设boost的安装及配置过程
查看>>
[转载]加密算法库Crypto——nodejs中间件系列
查看>>
zoj 2286 Sum of Divisors
查看>>
OO5~7次作业总结
查看>>
如何判断主机是大端还是小端(字节序)
查看>>
Centos7 日志查看工具
查看>>
使用Xshell密钥认证机制远程登录Linux
查看>>
OpenCV之响应鼠标(三):响应鼠标信息
查看>>
python7 数据类型的相互转化 字符编码
查看>>
Android 画图之 Matrix(一)
查看>>
List<T>列表通用过滤模块设计
查看>>
【模板】最小生成树
查看>>