39
|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Text; |
|
4 |
using System.Windows; |
|
5 |
using System.Windows.Controls; |
|
6 |
using System.Windows.Data; |
|
7 |
using System.Windows.Documents; |
|
8 |
using System.Windows.Input; |
|
9 |
using System.Windows.Media; |
|
10 |
using System.Windows.Media.Imaging; |
|
11 |
using System.Windows.Navigation; |
|
12 |
using System.Windows.Shapes; |
|
13 |
|
|
14 |
namespace FingersDance.Debug |
|
15 |
{ |
|
16 |
/// <summary> |
|
17 |
/// Interaction logic for UserControlDebug.xaml |
|
18 |
/// </summary> |
|
19 |
public partial class UserControlDebug : UserControl |
|
20 |
{ |
|
21 |
public UserControlDebug() |
|
22 |
{ |
|
23 |
this.InitializeComponent(); |
|
24 |
} |
|
25 |
|
|
26 |
public void addToList(String item) |
|
27 |
{ |
|
28 |
this.listbox.Items.Add(item); |
|
29 |
} |
|
30 |
} |
|
31 |
} |