You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
893 B
39 lines
893 B
using System.Diagnostics;
|
|
using System.Windows;
|
|
|
|
namespace MediaBrowser.ServerApplication
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for MainWindow.xaml
|
|
/// </summary>
|
|
public partial class MainWindow : Window
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
//LoadKernel();
|
|
}
|
|
|
|
#region Context Menu events
|
|
|
|
private void cmOpenDashboard_click(object sender, RoutedEventArgs e)
|
|
{
|
|
App.OpenDashboard();
|
|
}
|
|
|
|
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)
|
|
{
|
|
Close();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|