Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2287 | - | 1 | using System; |
2 | using System.Collections.Generic; |
||
3 | using System.Configuration; |
||
4 | using System.Data; |
||
2379 | - | 5 | using System.Globalization; |
2287 | - | 6 | using System.Linq; |
2379 | - | 7 | using System.Reflection; |
8 | using System.Resources; |
||
2287 | - | 9 | using System.Threading.Tasks; |
10 | using System.Windows; |
||
2379 | - | 11 | using System.Windows.Threading; |
2287 | - | 12 | |
13 | namespace MKLiveView |
||
2379 | - | 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> |
||
18 | internal delegate void Invoker(); |
||
19 | |||
2287 | - | 20 | /// <summary> |
21 | /// Interaktionslogik für "App.xaml" |
||
22 | /// </summary> |
||
23 | public partial class App : Application |
||
24 | { |
||
25 | } |
||
26 | } |