Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit bc5c023

Browse files
author
Charles Petzold
committed
Tiny fixes
1 parent 3e1a13c commit bc5c023

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Chapter05/EstimatedFontSize/EstimatedFontSize/EstimatedFontSize/EstimatedFontSizePage.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ void OnContentViewSizeChanged(object sender, EventArgs args)
3535
// Get View whose size is changing.
3636
View view = (View)sender;
3737

38-
// Two values as multiples of font size
38+
// Define two values as multiples of font size.
3939
double lineHeight = Device.OnPlatform(1.2, 1.2, 1.3);
4040
double charWidth = 0.5;
4141

42-
// Format the text and get its length
42+
// Format the text and get its character length.
4343
text = String.Format(text, lineHeight, charWidth, view.Width, view.Height);
4444
int charCount = text.Length;
4545

Chapter05/FS/EstimatedFontSize/EstimatedFontSize/EstimatedFontSize/EstimatedFontSizePage.fs

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ type EstimatedFontSizePage() =
2020
paragraph with ?3 lines and about ?4 characters \
2121
per line. Does it work?"
2222

23-
// Two values as multiples of font size.
23+
// Define two values as multiples of font size.
2424
let lineHeight = Device.OnPlatform(1.2, 1.2, 1.3)
2525
let charWidth = 0.5
2626

27-
// Format the text and get its length.
27+
// Format the text and get its character length.
2828
let text = String.Format(text, lineHeight, charWidth, contentView.Width, contentView.Height)
2929
let charCount = text.Length
3030

Chapter11/PropertySettings/PropertySettings/PropertySettings/PropertySettingsPage.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public PropertySettingsPage()
2727
label2.SetValue(Label.TextProperty, "Text with bindable properties");
2828
label2.SetValue(Label.IsVisibleProperty, true);
2929
label2.SetValue(Label.OpacityProperty, 0.75);
30-
label2.SetValue(Label.XAlignProperty, TextAlignment.Center);
30+
label2.SetValue(Label.HorizontalTextAlignmentProperty, TextAlignment.Center);
3131
label2.SetValue(Label.VerticalOptionsProperty, LayoutOptions.CenterAndExpand);
3232
label2.SetValue(Label.TextColorProperty, Color.Blue);
3333
label2.SetValue(Label.BackgroundColorProperty, Color.FromRgb(255, 128, 128));

0 commit comments

Comments
 (0)