質問編集履歴
1
Loginボタンを押すと別のページに遷移できるようにしたいです。
title
CHANGED
File without changes
|
body
CHANGED
@@ -14,8 +14,27 @@
|
|
14
14
|
|
15
15
|
### 該当のソースコード
|
16
16
|
|
17
|
-
```
|
17
|
+
```MainPage.xaml
|
18
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
19
|
+
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
20
|
+
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
21
|
+
xmlns:local="clr-namespace:toshiapp"
|
22
|
+
x:Class="toshiapp.MainPage">
|
23
|
+
|
18
|
-
|
24
|
+
<StackLayout>
|
25
|
+
<!-- Place new controls here -->
|
26
|
+
<Label Text="Welcome to Xamarin.Forms!"
|
27
|
+
HorizontalOptions="Center"
|
28
|
+
VerticalOptions="CenterAndExpand" />
|
29
|
+
<Entry Placeholder = "Username" />
|
30
|
+
<Entry Placeholder = "Password"
|
31
|
+
IsPassword = "True" />
|
32
|
+
<Button Text = "Login" />
|
33
|
+
</StackLayout>
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
</ContentPage>
|
19
38
|
```
|
20
39
|
|
21
40
|
### 試したこと
|