Rev 2289 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2289 | Rev 2379 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | using System; |
1 | using System; |
2 | using System.Collections.Generic; |
2 | using System.Collections.Generic; |
3 | using System.Configuration; |
3 | using System.Configuration; |
4 | using System.Data; |
4 | using System.Data; |
- | 5 | using System.Globalization; |
|
5 | using System.Linq; |
6 | using System.Linq; |
- | 7 | using System.Reflection; |
|
- | 8 | using System.Resources; |
|
6 | using System.Threading.Tasks; |
9 | using System.Threading.Tasks; |
7 | using System.Windows; |
10 | using System.Windows; |
- | 11 | using System.Windows.Threading; |
|
Line 8... | Line 12... | ||
8 | 12 | ||
- | 13 | namespace MKLiveView |
|
- | 14 | { /// <summary> |
|
- | 15 | /// Anwendungsweiter Delegat zum aktualisieren der UI-Elemente auf dem UI-Thread. |
|
- | 16 | /// </summary> |
|
- | 17 | /// <remarks>Wird benötigt um Cross-Threading Situationen zu vermeiden.</remarks> |
|
9 | namespace MKLiveView |
18 | internal delegate void Invoker(); |
10 | { |
19 | |
11 | /// <summary> |
20 | /// <summary> |
12 | /// Interaktionslogik für "App.xaml" |
21 | /// Interaktionslogik für "App.xaml" |
13 | /// </summary> |
22 | /// </summary> |
14 | public partial class App : Application |
23 | public partial class App : Application |