Ejemplo n.º 1
0
        //
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            Infragistics.XamarinForms.Controls.Grids.XamDataGrid.Init();
            V4Adapter.Reference();
            global::Xamarin.Forms.Forms.Init();
            LoadApplication(new App());

            return(base.FinishedLaunching(app, options));
        }
Ejemplo n.º 2
0
        protected override void OnCreate(Bundle bundle)
        {
            TabLayoutResource = Resource.Layout.Tabbar;
            ToolbarResource   = Resource.Layout.Toolbar;

            base.OnCreate(bundle);

            //Infragistics.Controls.
            V4Adapter.Reference();
            global::Xamarin.Forms.Forms.Init(this, bundle);
            LoadApplication(new App());
        }
Ejemplo n.º 3
0
        public static async Task <IEnumerable <T> > LoadEntities <T>(string userName, string serviceName) where T : class
        {
            V4Adapter.Reference();

            string password = userName;

            var odataClient = new ODataClient(
                new ODataClientSettings("http://efcoresecurityodataservicedemo.azurewebsites.net/",
                                        new NetworkCredential(userName, password)));

            var command = odataClient.For <T>(serviceName);

            return(await command.FindEntriesAsync());
        }
Ejemplo n.º 4
0
 public void TestFixtureSetUp()
 {
     V3Adapter.Reference();
     V4Adapter.Reference();
 }