JudoPayiOSXamarinSampleApp.MainMenuSource.MainMenuSource C# (CSharp) Méthode

MainMenuSource() public méthode

public MainMenuSource ( Action>.Dictionary buttonDictionary ) : System
buttonDictionary Action>.Dictionary
Résultat System
		public MainMenuSource (Dictionary<string,Action> buttonDictionary)
		{
			TableCells = new List<UITableViewCell> ();
			ButtonArray = buttonDictionary.ToArray ();
			foreach (var buttonProperty in ButtonArray) {
				var cell = new UITableViewCell ();
				cell.TextLabel.Text = buttonProperty.Key;
				TableCells.Add (cell);
			}
		}