Xamarin Forms Lecture 2 Greetings Demos.

Slides:



Advertisements
Similar presentations
PREPOSITIONS OF PLACE WHERE? IN BEHIND ON BETWEEN UNDER NEXT TO
Advertisements

Naredba If..Then..Else... Procedure TForm1.Button1Click ( SEnder: Tobject ); Var x, y, Max : Integer; Begin x := StrToInt ( Edit1.Text ); y := StrToInt.
THE HOUND OF THE BASKERVILLES. Who is Dr. Watson?
Parts of a Friendly Letter
Corridor Conversation Pick and choose a number. Behind every number is a task. Good Luck!
WELCOME HI GOOD MORNING GOOD MORNING GOOD MORNING GOOD MORNING.
Who Am I? True or False? ReactionsPlaces Grab Bag.
P.6 English Lesson Greetings How do you do, I’m Peter Chan? How do you do, Mr Chan? I’m very pleased to meet you. people meet at the first time.
The Hound of the Baskervilles
Xamarin.Forms Hands On.
Welcome First Grade Friends to Osceola Magnet. The First Morning School Begins at 8:45- Please come and sit behind your classroom. Your teacher will greet.
ASP Hello, world. ServerClient Response Request A form.
Web Controls Making a WebRequest using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.IO;
Rosh Hashana The New Year By Galit Shictman. Hello everyone! Look at the pictures. What are these?
.NET 2.0 and Visual Studio 2005 SigWin Outline Language enhancements in C# Language enhancements in C# –Generics –Partial types –Anonymous methods.
Copyright ©2004 Virtusa Corporation | CONFIDENTIAL Windows Presentation Foundation Ruwan Wijesinghe.
Harding High School Technology Lab Safety Power Machine Review Mr. Pottkotter & Mr. Robinson.
Formal Lab Write Up Science 10.
Napier Enhanced Option Elementary School Cafeteria Plan.
Greetings Book 1A Unit 1 New Friends Book 1A Unit 1 New Friends.
Created by Alia Al-Abdulkarim 2008 Visual Basic Vs. Java.
Warm-Up Pick your seat! Seriously, pick your seat. But if there’s an issue, I’ll move you. You’ve been warned!!!!!!!
Functional Writing.
Language Arts/English
How Can Mixtures Be Separated? The parts of a mixture can be separated using their physical properties. These properties include size, shape, color,
Lesson 22 Unit 6 1.What do you like to do in your spare time ? 2.Which of the following do you collect : stamps, coins, or postcards? Anything else.
BY MEDWIN ODAMTTEN 7N. History of the flute The oldest flutes found, are thousands of years old and made of bones. These flutes were used during hunting.
“Once Upon a Time…” Character 1: Wish fulfillment? Character 2: Three wishes, to be exact. And ixnay on the wishing for more wishes. That's all.
Hello Educational presentation.
Build Fast and Beautiful Apps with Xamarin.Forms
Contentless Scene A: Hi. B: Hello. A: What’d you do last night?
A B ? A B Match A to Column B 1) Hello! I´m fine. Thanks.
State of the Art in Mobile Development - AndRES Käver, 2016
Parts of a Friendly Letter
Rocks in His Head By: Carol Otis Hurst Illustrated by: James Stevenson
Alive-O 2 Term 1: Lesson 2 Together Again.
Basic Narration Types English III || D. Glen Smith, Instructor.
Greetings Review Read the clue in Spanish.
Hello! How are you? How do you do? (formal)
Lecture 3 Multiple Pages.
Modals of Deduction
Primary Longman Elect 1A Chapter 1 Text Type Cards.
Making Predictions.
excerpt from The Wonderful Wizard of Oz
Mr. Sherlock Holmes, who was usually very late in the mornings, save upon those not infrequent occasions when he was up all night, was seated at the breakfast.
Band-Aid Free Write Pick up a Band-Aid as they are passed around.
Action Verbs.
Self Study GUI Properties & Events
(the 1st week of Kindergarten!)
Look at the picture.
Lesson 5: Mendeleev and the Periodic Table
Label Name Label Name Label Name Label Name Label Name Label Name
Translate the conversations using your chapter schedule
EXPRESSION OF GREETING AND LEAVE TAKING
Please take out your binder with your blue syllabus, green lab safety sheet, and your notebook w/3 dividers for your final check! Also have your textbook.
PreAP Computer Science Review Quiz 08
BENJY GOES TO SCHOOL.
Pair work – Do you want to change seats??
Searching For an Organizing Principle
GenerationsForward Speaker
ASP.NET Relationships between tables
Ready,go!. Ready,go! I can see a mountain. Hi,Tony. Have a good time.. Thank you.
Text Type: s Unit 5 Amazing facts.
Primary Longman Elect 1A Chapter 1 Text Type Cards.
Greetings & introduction
Greetings Unit 1 My new friends.
Displaying Local Images
Hello Hi Hello Hi Hello Hi Hello Hi Hello Hi Hello Hi.
label1 Name label2 Time (0-23) textBox1 textBox2 textBox3 button1
Presentation transcript:

Xamarin Forms Lecture 2 Greetings Demos

App.cs

using System; using Xamarin.Forms; namespace Greetings { public class GreetingsPage : ContentPage Label label3 = new Label(); public GreetingsPage() Label label1 = new Label Text = "Hello There", FontSize = 30, FontAttributes = FontAttributes.Bold, HorizontalOptions = LayoutOptions.Center }; Label label2 = new Label Text = "CSC 425 Rocks!", label3.Text = ""; label3.FontSize = 20; label3.HorizontalOptions = LayoutOptions.Center; Button button = new Button Text = "Sherlock", BorderWidth = 1, HorizontalOptions = LayoutOptions.Center, VerticalOptions = LayoutOptions.CenterAndExpand button.Clicked += OnButtonClicked; this.Padding = new Thickness(10, Device.OnPlatform(20, 0, 0), 10, 5); this.Content = new StackLayout { Children = label1, label2, label3, button } }; void OnButtonClicked(object sender, EventArgs e) if (label3.Text == "") label3.Text = "Mr. Sherlock Holmes, who was usually very late in the mornings, save upon those not infrequent occasions when he was up all night, was seated at the breakfast table. I stood upon the hearth-rug and picked up the stick which our visitor had left behind hm the night before. It was a fine, thick piece of wood, bulbous-headed, of the sort which is known as a \u201CPenang Lawyer.\u201D Just under the head was a broad silver band, nearly an inch across, \u201CTo James Mortimer, M.R.C.S, from his friends of the C.C.H.,\u201D was engraved upon it, with the date \u201C1884.\u201D It was just such a stick as the old-fashioned family practitioner used to carry\u2014dignified, solid, and reassuring."; else label3.Text = "";