回答編集履歴

2

誤字の修正

2017/08/28 10:18

投稿

runny_nose
runny_nose

スコア280

test CHANGED
@@ -22,10 +22,6 @@
22
22
 
23
23
  {
24
24
 
25
- textBox.SelectionLength = 0;
26
-
27
- textBox.SelectionStart = textBox.Text.Length;
28
-
29
25
  textBox.Select(textBox.Text.Length, 0);
30
26
 
31
27
  });

1

誤字の修正

2017/08/28 10:18

投稿

runny_nose
runny_nose

スコア280

test CHANGED
@@ -18,12 +18,6 @@
18
18
 
19
19
  {
20
20
 
21
- var textBox = comboBox.Template.FindName("PART_EditableTextBox", comboBox) as TextBox;
22
-
23
- if (textBox != null)
24
-
25
- {
26
-
27
21
  Dispatcher.InvokeAsync(()=>
28
22
 
29
23
  {
@@ -38,8 +32,6 @@
38
32
 
39
33
  }
40
34
 
41
- }
42
-
43
35
  }
44
36
 
45
37
  ```