質問編集履歴

2

add

2018/03/23 13:09

投稿

E3a
E3a

スコア6

test CHANGED
File without changes
test CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  if (File.Exists(path))
26
26
 
27
- Image.Source = await ReadImage(imagepath);
27
+ Image.Source = await ReadImage(imagepath);//<--ここ
28
28
 
29
29
  }
30
30
 
@@ -60,9 +60,11 @@
60
60
 
61
61
 
62
62
 
63
- ```
63
+ ```C#
64
64
 
65
+ //ここをこんな風に書きたい
66
+
65
- Image.Invoke(new Action(ReadImage), path);
67
+ Image.Invoke(new Action(ReadImage), imagepath);
66
68
 
67
69
 
68
70
 

1

mtake

2018/03/23 13:09

投稿

E3a
E3a

スコア6

test CHANGED
File without changes
test CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  if (File.Exists(path))
26
26
 
27
- Image.Source = await ReadImage(path);
27
+ Image.Source = await ReadImage(imagepath);
28
28
 
29
29
  }
30
30