상속: MonoMobile.Dialog.DialogViewController
예제 #1
0
        public void DemoIndex()
        {
            var root = new RootElement("Container Style")
            {
                from sh in "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
                select new Section(sh + " - Section")
                {
                    from filler in "12345"
                    select(Element) new StringElement(sh + " - " + filler)
                }
            };
            var dvc = new IndexedViewController(root, true);

            navigation.PushViewController(dvc, true);
        }
예제 #2
0
		public void DemoIndex () 
		{
			var root = new RootElement ("Container Style") {
				from sh in "ABCDEFGHIJKLMNOPQRSTUVWXYZ" 
				    select new Section (sh + " - Section") {
					   from filler in "12345" 
						select (Element) new StringElement (sh + " - " + filler)
				}
			};
			var dvc = new IndexedViewController (root, true);
			navigation.PushViewController (dvc, true);
		}
예제 #3
0
 public SizingIndexedSource(IndexedViewController parent) : base(parent)
 {
     this.parent = parent;
 }
예제 #4
0
	        public SizingIndexedSource (IndexedViewController parent) : base (parent)
	        {
	            this.parent = parent;
	        }