1 / 14

Xamarin Mobile App Development with Visual Studio 2017 and Xamarin.Forms

Learn cross-platform mobile app development using Xamarin with Microsoft Visual Studio 2017 and Xamarin.Forms. Explore project setup, file structure, and UI design.

raphaelk
Download Presentation

Xamarin Mobile App Development with Visual Studio 2017 and Xamarin.Forms

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 2018 Крос-платформена розробка мобільних проектів із Xamarinу MS Visual Studio 2017

  2. MS Visual Studio 2017. Довстановлення (при потребі) Xamarin

  3. Вибір шаблону (кількапроектного) Xamarin

  4. Вибір параметрів проекту Xamarin

  5. Структура рішення (чотири проекти) Проект dll-бібліотеки (з усією потрібною логікою) Три окремі різноплатформені проекти Xamarin

  6. Файли App.xaml, MainPage.xaml <?xml version="1.0" encoding="utf-8" ?> <Application xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="XamarinDefaultDemo1.App"> <Application.Resources> </Application.Resources> </Application> App.xaml <?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:XamarinDefaultDemo1" x:Class="XamarinDefaultDemo1.MainPage"> <StackLayout> <!-- Place new controls here --> <Label Text="Welcome to Xamarin.Forms!" HorizontalOptions="Center" VerticalOptions="CenterAndExpand" /> </StackLayout> </ContentPage> MainPage.xaml Xamarin

  7. using System; using Xamarin.Forms; using Xamarin.Forms.Xaml; [assembly: XamlCompilation (XamlCompilationOptions.Compile)] namespace XamarinDefaultDemo1 { publicpartialclassApp : Application { public App () { InitializeComponent(); MainPage = new MainPage(); } protectedoverridevoid OnStart () {/* Handle when your app starts */ } protectedoverridevoid OnSleep () {/* Handle when your app sleeps */ } protectedoverridevoid OnResume () {/* Handle when your app resumes */ } } } App.xaml.cs Файли App.xaml.cs, MainPage.xaml.cs Вибір головної сторінки проекту using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Xamarin.Forms; namespace XamarinDefaultDemo1 { publicpartialclassMainPage : ContentPage { public MainPage() { InitializeComponent(); } } } MainPage.xaml.cs Xamarin

  8. Проект XamarinDefaultDemo1.UWP ‎(Universal Windows). Запуск Xamarin

  9. Проект XamarinDefaultDemo1.Android. Використання підключеного Android-пристрою1. Увімкнення режиму розробника на Android-пристрої Натиснути 7 разів 2 1 Xamarin

  10. Проект XamarinDefaultDemo1.Android. Використання підключеного Android-пристрою2. Налаштування режиму розробника на Android-пристрої Xamarin

  11. Проект XamarinDefaultDemo1.Android. Використання підключеного Android-пристрою3. Урахування версії Android (1/2) Xamarin

  12. Проект XamarinDefaultDemo1.Android. Використання підключеного Android-пристрою3. Урахування версії Android (2/2) ПКМ -> Властивості Xamarin

  13. Проект XamarinDefaultDemo1.Android. Використання підключеного Android-пристрою4. Запуск проекта на підключеному Android-пристрої Xamarin

  14. Проект запущено в Android-планшеті Xamarin

More Related