This repository was archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathShellContentTest.xaml.cs
131 lines (108 loc) · 2.85 KB
/
ShellContentTest.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Internals;
using Xamarin.Forms.Xaml;
namespace Xamarin.Forms.Controls
{
[Preserve]
[QueryProperty("Text", "welcome")]
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class ShellContentTest : ContentPage
{
private class MySearchHandler : SearchHandler
{
public MySearchHandler()
{
ShowsResults = true;
Placeholder = "Search Me";
}
protected override void OnQueryChanged(string oldValue, string newValue)
{
base.OnQueryChanged(oldValue, newValue);
List<string> results = new List<string>();
for (int i = 0; i < 100; i++)
{
results.Add(newValue + i);
}
ItemsSource = results;
}
protected override void OnQueryConfirmed()
{
base.OnQueryConfirmed();
}
protected override void OnItemSelected(object item)
{
base.OnItemSelected(item);
ItemsSource = null;
}
}
private string _text;
public ShellContentTest()
{
InitializeComponent();
Shell.SetSearchHandler(this, new MySearchHandler());
//BackgroundColor = Color.Blue;
_pushButton.Clicked += PushClicked;
_popButton.Clicked += PopClicked;
_popToRootButton.Clicked += PopToRootClicked;
_navButton.Clicked += NavClicked;
_queryButton.Clicked += QueryClicked;
_toggleButton.Clicked += ToggleClicked;
_removeButton.Clicked += RemovedClicked;
_insertButton.Clicked += InsertClicked;
}
public string Text
{
get { return _text; }
set
{
_text = value;
_mainLabel.Text = _text;
}
}
private void RemovedClicked(object sender, EventArgs e)
{
var stack = Navigation.NavigationStack;
var page = stack[stack.Count - 2];
Navigation.RemovePage(page);
}
private void InsertClicked(object sender, EventArgs e)
{
Navigation.InsertPageBefore(new ShellContentTest(), this);
}
private void ToggleClicked(object sender, EventArgs e)
{
var shell = Application.Current.MainPage as Shell;
shell.FlyoutIsPresented = !shell.FlyoutIsPresented;
}
private async void QueryClicked(object sender, EventArgs e)
{
var shell = Application.Current.MainPage as Shell;
await shell.GoToAsync("app:///s/apps/movies/shellcontent?welcome=helloworld!");
}
private async void NavClicked(object sender, EventArgs e)
{
var shell = Application.Current.MainPage as Shell;
await shell.GoToAsync("app:///s/apps/movies/buttongallery");
}
private async void PopToRootClicked(object sender, EventArgs e)
{
await Navigation.PopToRootAsync();
}
private async void PopClicked(object sender, EventArgs e)
{
await Navigation.PopAsync();
}
private async void PushClicked(object sender, EventArgs e)
{
await Navigation.PushAsync(new ShellContentTest()
{
Text = Text + "1"
});
}
}
}