35
|
1 |
using System; |
|
2 |
using System.IO; |
|
3 |
using System.Net; |
|
4 |
using System.Windows; |
|
5 |
using System.Windows.Controls; |
|
6 |
using System.Windows.Data; |
|
7 |
using System.Windows.Media; |
|
8 |
using System.Windows.Media.Animation; |
|
9 |
using System.Windows.Navigation; |
|
10 |
|
|
11 |
namespace FingersDance.Control.Screen |
|
12 |
{ |
|
13 |
public partial class UserControlScreen |
|
14 |
{ |
82
|
15 |
public String contexteGrid; |
95
|
16 |
public string Path = ""; |
|
17 |
|
35
|
18 |
public UserControlScreen() |
|
19 |
{ |
|
20 |
this.InitializeComponent(); |
|
21 |
|
|
22 |
// Insert code required on object creation below this point. |
|
23 |
} |
|
24 |
|
82
|
25 |
//Rajout un UIElement vers la grid du screen. |
|
26 |
public void AddToGrid(UIElement uie) |
|
27 |
{ |
|
28 |
if (uie != null) |
|
29 |
{ |
|
30 |
try { LayoutRoot.Children.Add(uie); } |
|
31 |
catch(Exception){} |
|
32 |
} |
|
33 |
} |
|
34 |
|
80
|
35 |
|
35
|
36 |
} |
|
37 |
} |