BililiveRecorder/BililiveRecorder.WPF/Controls/RoomCard.xaml.cs

52 lines
1.9 KiB
C#
Raw Normal View History

2020-11-27 18:51:02 +08:00
using System;
using System.Diagnostics;
2020-11-27 18:51:02 +08:00
using System.Windows;
using System.Windows.Controls;
using BililiveRecorder.Core;
namespace BililiveRecorder.WPF.Controls
{
/// <summary>
/// Interaction logic for RoomCard.xaml
/// </summary>
public partial class RoomCard : UserControl
{
public RoomCard()
{
2021-01-01 14:46:27 +08:00
this.InitializeComponent();
2020-11-27 18:51:02 +08:00
}
public event EventHandler DeleteRequested;
2021-01-01 14:46:27 +08:00
public event EventHandler ShowSettingsRequested;
2021-01-08 18:54:50 +08:00
private void MenuItem_StartRecording_Click(object sender, RoutedEventArgs e) => (this.DataContext as IRecordedRoom)?.StartRecord();
2020-11-27 18:51:02 +08:00
2021-01-08 18:54:50 +08:00
private void MenuItem_StopRecording_Click(object sender, RoutedEventArgs e) => (this.DataContext as IRecordedRoom)?.StopRecord();
2020-11-27 18:51:02 +08:00
2021-01-08 18:54:50 +08:00
private void MenuItem_RefreshInfo_Click(object sender, RoutedEventArgs e) => (this.DataContext as IRecordedRoom)?.RefreshRoomInfo();
2020-11-27 18:51:02 +08:00
2021-01-08 18:54:50 +08:00
private void MenuItem_StartMonitor_Click(object sender, RoutedEventArgs e) => (this.DataContext as IRecordedRoom)?.Start();
2020-11-27 18:51:02 +08:00
2021-01-08 18:54:50 +08:00
private void MenuItem_StopMonitor_Click(object sender, RoutedEventArgs e) => (this.DataContext as IRecordedRoom)?.Stop();
2020-11-27 18:51:02 +08:00
2021-01-08 18:54:50 +08:00
private void MenuItem_DeleteRoom_Click(object sender, RoutedEventArgs e) => DeleteRequested?.Invoke(this.DataContext, EventArgs.Empty);
2021-01-01 14:46:27 +08:00
2021-01-08 18:54:50 +08:00
private void MenuItem_ShowSettings_Click(object sender, RoutedEventArgs e) => ShowSettingsRequested?.Invoke(this.DataContext, EventArgs.Empty);
2020-11-27 18:51:02 +08:00
2021-01-08 18:54:50 +08:00
private void Button_Clip_Click(object sender, RoutedEventArgs e) => (this.DataContext as IRecordedRoom)?.Clip();
private void MenuItem_OpenInBrowser_Click(object sender, RoutedEventArgs e)
{
2021-01-01 14:46:27 +08:00
if (this.DataContext is IRecordedRoom r && r is not null)
{
try
{
Process.Start("https://live.bilibili.com/" + r.RoomId);
}
catch (Exception) { }
}
}
2020-11-27 18:51:02 +08:00
}
}