public Page3()
 {
     sm                  = new SimpleVM();
     sm.User             = new User("ANTON");
     this.BindingContext = sm;
     InitializeComponent();
 }
Exemple #2
0
 public InnerPage(ContentPage root)
 {
     _root          = root;
     smm            = new SimpleVM();
     smm.User       = new User("YAROL");
     BindingContext = smm;
     InitializeComponent();
 }
Exemple #3
0
        static void Main(string[] args)
        {
            /*
             * ArithmeticTests.Tests();
             * SExprTests.Tests();
             * JsonTests.Tests();
             * UnifierTests.Tests();
             * CatTests.Tests();
             * ILTests.Tests();
             * LambdaCalculus.Test();
             * EmbeddedScheme.Tests();
             * CodeDOMCompilerTests.Tests();
             * CSharpFunctionCompilerTests.Tests();
             * */
            JavaScriptTests.Tests();
            CodeProjectArticleSnippets.Tests();

            SimpleVM.Test();
            Console.WriteLine("And that's it. Press any key to go home ...");
            Console.ReadKey();
        }
 public MainWindow()
 {
     InitializeComponent();
     DataContext = new SimpleVM();
 }