2020-11-27 18:51:02 +08:00
|
|
|
using System;
|
2020-12-12 23:19:47 +08:00
|
|
|
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()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
|
|
|
public event EventHandler DeleteRequested;
|
|
|
|
|
|
|
|
private void MenuItem_StartRecording_Click(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
(DataContext as IRecordedRoom)?.StartRecord();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void MenuItem_StopRecording_Click(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
(DataContext as IRecordedRoom)?.StopRecord();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void MenuItem_RefreshInfo_Click(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
(DataContext as IRecordedRoom)?.RefreshRoomInfo();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void MenuItem_StartMonitor_Click(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
(DataContext as IRecordedRoom)?.Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void MenuItem_StopMonitor_Click(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
(DataContext as IRecordedRoom)?.Stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void MenuItem_DeleteRoom_Click(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
DeleteRequested?.Invoke(DataContext, EventArgs.Empty);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void Button_Clip_Click(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
(DataContext as IRecordedRoom)?.Clip();
|
|
|
|
}
|
2020-12-12 23:19:47 +08:00
|
|
|
|
|
|
|
private void MenuItem_OpenInBrowser_Click(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
if (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
|
|
|
}
|
|
|
|
}
|