質問編集履歴

4

C#コード修正いたしました。

2020/05/04 13:47

投稿

pj7577bm60v
pj7577bm60v

スコア13

test CHANGED
File without changes
test CHANGED
@@ -78,68 +78,50 @@
78
78
 
79
79
  [DesignTimeVisible(false)]
80
80
 
81
+
82
+
83
+ public class IsGreaterZeroConverter : IValueConverter
84
+
85
+ {
86
+
87
+ public object Converter(object value, Type targetType, object parameter, CultureInfo culture)
88
+
89
+ {
90
+
91
+ return ((int)value) > 0;
92
+
93
+ }
94
+
95
+
96
+
97
+ public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
98
+
99
+ {
100
+
101
+ throw new NotSupportedException();
102
+
103
+ }
104
+
105
+ }
106
+
81
107
  public partial class MainPage : ContentPage
82
108
 
83
109
  {
84
110
 
85
- public class IsGreaterZeroConverter : IValueConverter
111
+ public MainPage()
86
112
 
87
113
  {
88
114
 
89
- public object Converter(object value, Type targetType, object parameter, CultureInfo culture)
90
-
91
- {
92
-
93
- return ((int)value) > 0;
94
-
95
- }
96
-
97
-
98
-
99
- public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
100
-
101
- {
102
-
103
- throw new NotSupportedException();
115
+ InitializeComponent();
104
-
105
- }
106
-
107
-
108
-
109
- object IValueConverter.Convert(object value, Type targetType, object parameter, CultureInfo culture)
110
-
111
- {
112
-
113
- throw new NotImplementedException();
114
-
115
- }
116
-
117
-
118
-
119
- object IValueConverter.ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
120
-
121
- {
122
-
123
- throw new NotImplementedException();
124
-
125
- }
126
116
 
127
117
  }
128
118
 
129
-
130
-
131
- public MainPage()
132
-
133
- {
134
-
135
- InitializeComponent();
136
-
137
- }
138
-
139
119
  }
140
120
 
141
121
  }
142
122
 
123
+
124
+
143
125
  ```
144
126
 
145
127
 

3

誤字修正いたしました。

2020/05/04 13:47

投稿

pj7577bm60v
pj7577bm60v

スコア13

test CHANGED
File without changes
test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  C#の勉強をしているものです。WindowsFormAppを作成したのでXamarinにてモバイル化を目指しています。
6
6
 
7
- Xamarin.Formsamarin.Forms入門というブログを写しているのですが、エラーが出てしまい進めていない状態です。
7
+ Xamarin.Forms入門というブログを写しているのですが、エラーが出てしまい進めていない状態です。
8
8
 
9
9
  エラーが解決できてログイン画面を完成させたいです。
10
10
 

2

微修正いたしました。

2020/05/04 13:33

投稿

pj7577bm60v
pj7577bm60v

スコア13

test CHANGED
File without changes
test CHANGED
@@ -256,6 +256,6 @@
256
256
 
257
257
  参考にさせていただいてるブログは
258
258
 
259
- https://blog.okazuki.jp/entry/2017/06/19/012705
259
+ [https://blog.okazuki.jp/entry/2017/06/19/012705](https://blog.okazuki.jp/entry/2017/06/19/012705)
260
260
 
261
261
  174ページになります。

1

微修正いたしました。

2020/05/04 13:28

投稿

pj7577bm60v
pj7577bm60v

スコア13

test CHANGED
File without changes
test CHANGED
@@ -20,6 +20,18 @@
20
20
 
21
21
  ```
22
22
 
23
+ C#
24
+
25
+ public class IsGreaterZeroConverter : IValueConverter
26
+
27
+ の部分で
28
+
29
+ IValueConverter インターフェイスが実装できないです。
30
+
31
+
32
+
33
+ Xamarin
34
+
23
35
  <local:IsGreaterZeroConverter x:Key="isGreaterZeroConverter"/>
24
36
 
25
37
  の部分で
@@ -28,14 +40,6 @@
28
40
 
29
41
 
30
42
 
31
- public class IsGreaterZeroConverter : IValueConverter
32
-
33
- の部分で
34
-
35
- IValueConverter インターフェイスが実装できないです。
36
-
37
-
38
-
39
43
  ```
40
44
 
41
45