}
nav.Next();
};
- btn.SetFontStyle(new PropertyMap().AddBoldFontStyle());
+ btn.SetFontStyle(new PropertyMap().AddRegularFontStyle());
carousel.SelectedItemChanged += (sender, args) =>
{
}
nav.Next();
};
- next.SetFontStyle(new PropertyMap().AddBoldFontStyle());
+ next.SetFontStyle(new PropertyMap().AddRegularFontStyle());
Button prev = new Button(ButtonStyles.Previous);
prev.Position2D = new Position2D(56, 512);
prev.ClickEvent += (obj, args) => {
nav.Previous();
};
- prev.SetFontStyle(new PropertyMap().AddBoldFontStyle());
+ prev.SetFontStyle(new PropertyMap().AddRegularFontStyle());
container.Add(carousel);
container.Add(title);
terms.AcceptTerms();
nav.Next();
};
- nextButton.SetFontStyle(new PropertyMap().AddBoldFontStyle());
+ nextButton.SetFontStyle(new PropertyMap().AddRegularFontStyle());
Button prev = new Button(ButtonStyles.Previous);
prev.Position2D = new Position2D(56, 512);
{
nav.Previous();
};
- prev.SetFontStyle(new PropertyMap().AddBoldFontStyle());
+ prev.SetFontStyle(new PropertyMap().AddRegularFontStyle());
TextLabel guide = new TextLabel(TextLabelStyles.GuideTextLabelStyle);
guide.Position2D = new Position2D(155, 442);
next.ClickEvent += (obj, args) => {\r
nav.Finish();\r
};\r
- next.SetFontStyle(new PropertyMap().AddBoldFontStyle());\r
+ next.SetFontStyle(new PropertyMap().AddRegularFontStyle());\r
\r
container.Add(title);\r
container.Add(next);\r
Position = new Position(56, 10),
Size2D = new Size2D(240, 72),
};
- Oobe.Common.Styles.ButtonsExtensions.SetFontStyle(prev, new PropertyMap().AddBoldFontStyle());
+ Oobe.Common.Styles.ButtonsExtensions.SetFontStyle(prev, new PropertyMap().AddRegularFontStyle());
prev.ClickEvent += (s, e) => nav.Previous();
view.Add(prev);
Position = new Position(888, 10),
Size2D = new Size2D(240, 72),
};
- next.SetFontStyle(new PropertyMap().AddBoldFontStyle());
+ next.SetFontStyle(new PropertyMap().AddRegularFontStyle());
next.ClickEvent += (s, e) => nav.Next();
view.Add(next);