summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls/GalleryPages
diff options
context:
space:
mode:
authorE.Z. Hart <hartez@users.noreply.github.com>2016-04-25 10:52:48 -0600
committerRui Marinho <me@ruimarinho.net>2016-04-25 12:52:48 -0400
commit07df05ced2b43446c84d47f4b7a8325abcd0f767 (patch)
tree21ac508248e24266a884f9bf0fc28acadf7978fc /Xamarin.Forms.Controls/GalleryPages
parent6c0c11960b26c4ccb3322fec04e0eb6f55d9da07 (diff)
downloadxamarin-forms-07df05ced2b43446c84d47f4b7a8325abcd0f767.tar.gz
xamarin-forms-07df05ced2b43446c84d47f4b7a8325abcd0f767.tar.bz2
xamarin-forms-07df05ced2b43446c84d47f4b7a8325abcd0f767.zip
Remove ToolBar from Core; Remove ToolBar renderers and unit tests (#124)
Diffstat (limited to 'Xamarin.Forms.Controls/GalleryPages')
-rw-r--r--Xamarin.Forms.Controls/GalleryPages/ToolbarGallery.cs40
1 files changed, 0 insertions, 40 deletions
diff --git a/Xamarin.Forms.Controls/GalleryPages/ToolbarGallery.cs b/Xamarin.Forms.Controls/GalleryPages/ToolbarGallery.cs
deleted file mode 100644
index b2be5f02..00000000
--- a/Xamarin.Forms.Controls/GalleryPages/ToolbarGallery.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Xamarin.Forms.Controls
-{
- public class ToolbarGallery : ContentPage
- {
- readonly Toolbar _toolbar;
- readonly StackLayout _stack;
-
- public ToolbarGallery ()
- {
- var label = new Label {
- Text = "Click the toolbar"
- };
-
- Content = _stack = new StackLayout ();
- _stack.Children.Add (label);
-
- foreach (string name in new[] { "One", "Two", "Three", "Four" }) {
- var toolbarItem = new ToolbarItem (name, null, delegate {
- label.Text = "Activated: " + name;
- }, ToolbarItemOrder.Secondary);
- ToolbarItems.Add (toolbarItem);
- }
-
- var imagePrimaryItem = new ToolbarItem (null, "menuIcon.png", () => label.Text = "Activated: Primary Image 1", ToolbarItemOrder.Primary);
- var imagePrimaryItemWithTitle = new ToolbarItem ("Primary", "menuIcon.png", () => label.Text = "Activated: Primary Image 2", ToolbarItemOrder.Primary);
- var imageItem = new ToolbarItem (null, "seth.png", () => label.Text = "Activated: Secondary Image 1", ToolbarItemOrder.Secondary);
- var imageItemWithTitle = new ToolbarItem ("Secondary", "seth.png", () => label.Text = "Activated: Secondary Image 2", ToolbarItemOrder.Secondary);
- ToolbarItems.Add (imagePrimaryItem);
- ToolbarItems.Add (imagePrimaryItemWithTitle);
- ToolbarItems.Add (imageItem);
- ToolbarItems.Add (imageItemWithTitle);
- }
- }
-}