Ejemplo n.º 1
0
        public override void ViewDidLoad()
        {
            base.ViewDidLoad();

            // Create the Product Table Data Source and populate it
            var DataSource = new ProductTableDataSource();

            DataSource.Products.Add(new Product("Xamarin.iOS", "Allows you to develop native iOS Applications in C#"));
            DataSource.Products.Add(new Product("Xamarin.Android", "Allows you to develop native Android Applications in C#"));
            DataSource.Products.Add(new Product("Xamarin.Mac", "Allows you to develop Mac native Applications in C#"));
            DataSource.Products.Add(new Product("Xamarin.tvOS", "Allows you to develop Apple TV native Applications in C#"));
            DataSource.Products.Add(new Product("Xamarin Studio Community", "A free, full-featured IDE for Mac users to create Android and iOS apps using Xamarin."));
            DataSource.Products.Add(new Product("Visual Studio Community", "A free, full-featured and extensible IDE for Windows users to create Android and iOS apps with Xamarin, as well as Windows apps, web apps, and cloud services."));
            DataSource.Products.Add(new Product("Visual Studio Professional", "Professional developer tools and services for individual developers or small teams."));
            DataSource.Products.Add(new Product("Visual Studio Enterprise", "End-to-end solution for teams of any size with demanding quality and scale needs"));
            DataSource.Products.Add(new Product("Xamarin Test Cloud", "Automatically test your app on thousands of mobile devices."));
            DataSource.Products.Add(new Product("HockyApp", "Bring Mobile DevOps to your apps and reliability to your users."));
            DataSource.Products.Add(new Product("Xamarin University", "Take your mobile strategy and apps to the next level."));
            DataSource.Sort("Title", true);

            // Populate the Product Table
            ProductTable.DataSource = DataSource;
            ProductTable.Delegate   = new ProductTableDelegate(this, DataSource);

            // Auto select the first row
            ProductTable.SelectRow(0, false);
        }
Ejemplo n.º 2
0
		public override void ViewDidLoad ()
		{
			base.ViewDidLoad ();

			// Create the Product Table Data Source and populate it
			var DataSource = new ProductTableDataSource ();
			DataSource.Products.Add (new Product ("Xamarin.iOS", "Allows you to develop native iOS Applications in C#"));
			DataSource.Products.Add (new Product ("Xamarin.Android", "Allows you to develop native Android Applications in C#"));
			DataSource.Products.Add (new Product ("Xamarin.Mac", "Allows you to develop Mac native Applications in C#"));
			DataSource.Products.Add (new Product ("Xamarin.tvOS", "Allows you to develop Apple TV native Applications in C#"));
			DataSource.Products.Add (new Product ("Xamarin Studio Community", "A free, full-featured IDE for Mac users to create Android and iOS apps using Xamarin."));
			DataSource.Products.Add (new Product ("Visual Studio Community", "A free, full-featured and extensible IDE for Windows users to create Android and iOS apps with Xamarin, as well as Windows apps, web apps, and cloud services."));
			DataSource.Products.Add (new Product ("Visual Studio Professional", "Professional developer tools and services for individual developers or small teams."));
			DataSource.Products.Add (new Product ("Visual Studio Enterprise", "End-to-end solution for teams of any size with demanding quality and scale needs"));
			DataSource.Products.Add (new Product ("Xamarin Test Cloud", "Automatically test your app on thousands of mobile devices."));
			DataSource.Products.Add (new Product ("HockyApp", "Bring Mobile DevOps to your apps and reliability to your users."));
			DataSource.Products.Add (new Product ("Xamarin University", "Take your mobile strategy and apps to the next level."));
			DataSource.Sort ("Title", true);

			// Populate the Product Table
			ProductTable.DataSource = DataSource;
			ProductTable.Delegate = new ProductTableDelegate (this, DataSource);

			// Auto select the first row
			ProductTable.SelectRow (0, false);
		}
Ejemplo n.º 3
0
		public override void AwakeFromNib ()
		{
			base.AwakeFromNib ();

			// Create the Product Table Data Source and populate it
			var DataSource = new ProductTableDataSource ();
			DataSource.Products.Add (new Product ("Xamarin.iOS", "Allows you to develop native iOS Applications in C#"));
			DataSource.Products.Add (new Product ("Xamarin.Android", "Allows you to develop native Android Applications in C#"));
			DataSource.Products.Add (new Product ("Xamarin.Mac", "Allows you to develop Mac native Applications in C#"));
			DataSource.Sort ("Title", true);

			// Populate the Product Table
			ProductTable.DataSource = DataSource;
			ProductTable.Delegate = new ProductTableDelegate (DataSource);

			// Auto select the first row
			ProductTable.SelectRow (0, false);
		}
Ejemplo n.º 4
0
        public override void ViewDidLoad()
        {
            base.ViewDidLoad();

            // Create the Product Table Data Source and populate it
            var DataSource = new ProductTableDataSource();

            DataSource.Products.Add(new Product("Xamarin.iOS", "Allows you to develop native iOS Applications in C#"));
            DataSource.Products.Add(new Product("Xamarin.Android", "Allows you to develop native Android Applications in C#"));
            DataSource.Products.Add(new Product("Xamarin.Mac", "Allows you to develop Mac native Applications in C#"));
            DataSource.Sort("Title", true);

            // Populate the Product Table
            ProductTable.DataSource = DataSource;
            ProductTable.Delegate   = new ProductTableDelegate(DataSource);

            // Auto select the first row
            ProductTable.SelectRow(0, false);
        }
Ejemplo n.º 5
0
		public ProductTableDelegate (ProductTableDataSource datasource)
		{
			this.DataSource = datasource;
		}
Ejemplo n.º 6
0
 public ProductTableDelegate(ViewController controller, ProductTableDataSource datasource)
 {
     this.Controller = controller;
     this.DataSource = datasource;
 }
Ejemplo n.º 7
0
		public ProductTableDelegate (ViewController controller, ProductTableDataSource datasource)
		{
			this.Controller = controller;
			this.DataSource = datasource;
		}
 public ProductTableDelegate(ProductTableDataSource datasource)
 {
     this.DataSource = datasource;
 }