public ModalPickerViewController(ModalPickerType pickerType, string headerText, UIViewController parent)
 {
     HeaderBackgroundColor = UIColor.White;
     HeaderTextColor = UIColor.Black;
     HeaderText = headerText;
     PickerType = pickerType;
     _parent = parent;
 }
Ejemplo n.º 2
0
 public ModalPickerViewController(ModalPickerType pickerType, string headerText, UIViewController parent)
 {
     HeaderBackgroundColor = UIColor.White;
     HeaderTextColor       = UIColor.Black;
     HeaderText            = headerText;
     PickerType            = pickerType;
     _parent = parent;
 }
		public ModalMenuPickerViewController(ModalPickerType pickerType, string inputText, UIViewController parent)
		{
			Localizer localizer = new Localizer ();

			HeaderBackgroundColor = UIColor.White;
			HeaderTextColor = UIColor.Black;
			Text = inputText;
			_parent = parent;
			CancelButtonText = localizer.Localize("closeMenu");
		}
Ejemplo n.º 4
0
 public ModalPickerViewController(ModalPickerType pickerType, string headerText, UIViewController parent)
 {
     HeaderBackgroundColor = UIColor.White;
     HeaderTextColor       = UIColor.Black;
     HeaderText            = headerText;
     PickerType            = pickerType;
     _parent          = parent;
     DoneButtonText   = Util.Strings.DONE;
     CancelButtonText = Util.Strings.CANCEL;
 }
 public ModalPickerViewController(ModalPickerType pickerType, string headerText, UIViewController parent)
 {
     HeaderBackgroundColor = UIColor.Blue;
     HeaderTextColor       = UIColor.Black;
     HeaderText            = headerText;
     PickerType            = pickerType;
     _parent          = parent;
     DoneButtonText   = "Mark Incomplete";
     CancelButtonText = "Cancel";
 }
Ejemplo n.º 6
0
        public ModalPickerViewController(ModalPickerType pickerType, string headerText, UIViewController parent)
        {
			Localizer localize = new Localizer ();

            HeaderBackgroundColor = UIColor.White;
            HeaderTextColor = UIColor.Black;
            HeaderText = headerText;
            PickerType = pickerType;
			_parent = parent;
			DoneButtonText = localize.Localize("done");
			CancelButtonText = localize.Localize("cancel");
        }
Ejemplo n.º 7
0
 public ModalPickerViewController(ModalPickerType pickerType, string headerText, UIViewController parent)
 {
     HeaderText = headerText;
     PickerType = pickerType;
     _parent    = parent;
 }