Section в MonoTouch.Dialog представляет собой группу элементов интерфейса пользователя, которые могут быть объединены вместе для отображения определенного раздела в пользовательском интерфейсе. Каждый раздел может содержать набор элементов, таких как строки, переключатели, кнопки и т. д. Это позволяет упорядочить и структурировать элементы интерфейса в удобный способ, облегчая навигацию и взаимодействие соответствующих функций и параметров приложения.
C# (CSharp) MonoTouch.Dialog Section - 34 примеров найдено. Это лучшие примеры C# (CSharp) кода для MonoTouch.Dialog.Section, полученные из open source проектов. Вы можете ставить оценку каждому примеру, чтобы помочь нам улучшить качество примеров.
Sections contain individual Element instances that are rendered by MonoTouch.Dialog
Sections are used to group elements in the screen and they are the only valid direct child of the RootElement. Sections can contain any of the standard elements, including new RootElements. RootElements embedded in a section are used to navigate to a new deeper level. You can assign a header and a footer either as strings (Header and Footer) properties, or as UIViews to be shown (HeaderView and FooterView). Internally this uses the same storage, so you can only show one or the other.