diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-08-12 14:12:59 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-08-12 14:12:59 -0400 |
| commit | 16593b3350f2fc17ae7d86aeec5ffcd8bc0e6d69 (patch) | |
| tree | b59027f922a8f018e9a4f1d73f289b6e865c0fdd /MediaBrowser.ServerApplication/MainWindow.xaml.cs | |
| parent | 6fe82962661d30baadb19d241f30fb6126f53406 (diff) | |
Implemented tray icon commands. (Dashboard link currently won't work)
Diffstat (limited to 'MediaBrowser.ServerApplication/MainWindow.xaml.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/MainWindow.xaml.cs | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/MediaBrowser.ServerApplication/MainWindow.xaml.cs b/MediaBrowser.ServerApplication/MainWindow.xaml.cs index a4be37475..b0b942025 100644 --- a/MediaBrowser.ServerApplication/MainWindow.xaml.cs +++ b/MediaBrowser.ServerApplication/MainWindow.xaml.cs @@ -1,19 +1,6 @@ using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
+using System.Diagnostics;
using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-
-using MediaBrowser.Common;
using MediaBrowser.Controller;
using MediaBrowser.Model.Progress;
@@ -70,7 +57,9 @@ namespace MediaBrowser.ServerApplication private void cmVisitCT_click(object sender, RoutedEventArgs e)
{
-
+ using (Process process = Process.Start("http://community.mediabrowser.tv/"))
+ {
+ }
}
private void cmExit_click(object sender, RoutedEventArgs e)
|
