Praeclarum.UI.DocumentsViewController.SetEditingNavItems C# (CSharp) Method

SetEditingNavItems() private method

private SetEditingNavItems ( bool animated ) : void
animated bool
return void
		void SetEditingNavItems (bool animated)
		{
			if (ios7) {
				EditButtonItem.TintColor = UIColor.White;
				dupBtn.TintColor = UIColor.White;
				moveBtn.TintColor = UIColor.White;
				deleteBtn.TintColor = UIColor.White;
			}

			NavigationItem.LeftItemsSupplementBackButton = false;
			NavigationItem.SetLeftBarButtonItems (new UIBarButtonItem[] {
				dupBtn,
				moveBtn,
				deleteBtn,
			}, animated);
			NavigationItem.SetRightBarButtonItems (new UIBarButtonItem[] {
				EditButtonItem,
			}, animated);
		}