Skip to content

Instantly share code, notes, and snippets.

@munkii
munkii / Section.cs
Created June 10, 2015 08:24
Alternative Footer property for a Monotouch Dialog Section that supports updating after the Initial Load. See this blog post http://munkiisoft.com/blog/archive/2015/06/10/updating-the-footer-on-a-monotouch-dialog-section.aspx
/// <summary>
/// MonoTouch Dialog Section super class
/// </summary>
public class Section : CrossUI.Touch.Dialog.Elements.Section
{
/// <summary>
/// Initializes a new instance of the <see cref="Section"/> class.
/// </summary>
public Section() : base()
{
namespace OurProj.Framework.Droid.Views
{
using System;
using System.Collections.Generic;
using Android.Content;
using Cirrious.MvvmCross.Droid.Views;
using Cirrious.MvvmCross.ViewModels;