Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

MainPage.xaml.cs 493 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  1. namespace WorkingWithWebview.WinPhone
  2. {
  3. using Microsoft.Phone.Controls;
  4. public partial class MainPage : global::Xamarin.Forms.Platform.WinPhone.FormsApplicationPage
  5. {
  6. public MainPage()
  7. {
  8. this.InitializeComponent();
  9. this.SupportedOrientations = SupportedPageOrientation.PortraitOrLandscape;
  10. global::Xamarin.Forms.Forms.Init();
  11. this.LoadApplication(new WorkingWithWebview.App()); // new in 1.3
  12. }
  13. }
  14. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...