回答編集履歴
1
見直しキャンペーン中
test
CHANGED
@@ -24,7 +24,7 @@
|
|
24
24
|
[punker76/gong-wpf-dragdrop: The GongSolutions.WPF.DragDrop library is a drag'n'drop framework for WPF](https://github.com/punker76/gong-wpf-dragdrop)
|
25
25
|
|
26
26
|
文字数ギリギリなので説明が少なめですが、不明な点があればコメントしてください。
|
27
|
-
```x
|
27
|
+
```xml
|
28
28
|
<Window
|
29
29
|
x:Class="Qogxgft0o3rrwcj.MainWindow"
|
30
30
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
@@ -124,7 +124,7 @@
|
|
124
124
|
</Window>
|
125
125
|
```
|
126
126
|
|
127
|
-
```
|
127
|
+
```cs
|
128
128
|
using System.Collections.ObjectModel;
|
129
129
|
using System.IO;
|
130
130
|
using System.Windows;
|
@@ -306,11 +306,12 @@
|
|
306
306
|
}
|
307
307
|
```
|
308
308
|

|
309
|
+
|
309
310
|
当初はあまり「バインディング」せずに書いていたのですが、
|
310
311
|
* 編集機能のUI(更新ボタン?)が悩ましい
|
311
312
|
* `ListBox.Items.Refresh()`まみれになって訳が分からなくなった
|
312
313
|
|
313
|
-
ため諦めました^^;(わたしには難しすぎたw
|
314
|
+
ため諦めました^^;(わたしには難しすぎたw
|
314
315
|
|
315
316
|
---
|
316
317
|
|