public DeviceTypeListPage ()
		{
			InitializeComponent ();

			System.Diagnostics.Debug.WriteLine ("ScreenHeight = {0}",DeviceInfo.Hardware.ScreenHeight);
			System.Diagnostics.Debug.WriteLine ("ScreenWidth = {0}",DeviceInfo.Hardware.ScreenWidth);

			typeListView.ItemSelected += (sender, e) => {
				var Item = (Db_allnode)e.SelectedItem;
				var DeviceList = new DeviceAddressListPage();
				DeviceList.BindingContext = Item;
				Navigation.PushAsync(DeviceList);
				//new NavigationPage().Navigation.PushAsync(DeviceList);
				//App.Navigation.Navigation.PopModalAsync();


			};

		}	
Example #2
0
		public InitializePage ()
		{
			ni_gpd = new Node_io_GpdPage ();
			da_l = new DeviceAddressListPage ();
			ni_iw = new Node_io_ItemPage ();
		}