Added named pipes comm between client and shell extensions
[pithos-ms-client] / trunk / Pithos.Client.WPF / App.xaml.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Configuration;
4 using System.Data;
5 using System.Diagnostics;
6 using System.Linq;
7 using System.Reflection;
8 using System.Windows;
9 using Microsoft.Win32;
10 using WPF.Themes;
11
12 namespace Pithos.Client.WPF
13 {
14     /// <summary>
15     /// Interaction logic for App.xaml
16     /// </summary>
17     public partial class App : Application
18     {
19         public App()
20         {
21             var extensionController = new ShellExtensionController();
22             extensionController.RegisterExtensions();
23             
24 /*
25             var appPatth =    Assembly.GetExecutingAssembly().Location;
26             Registry.LocalMachine.SetValue(@"Software\Pithos\AppPath",appPatth );
27 */
28
29             InitializeComponent();            
30             //Application.Current.ApplyTheme("BureauBlue");
31         }
32     }
33
34 }