-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml.cs
114 lines (102 loc) · 3.67 KB
/
MainWindow.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
using Hardcodet.Wpf.TaskbarNotification;
using Microsoft.AspNetCore.SignalR.Client;
using Microsoft.Extensions.Configuration;
using NfcClient.Views;
using System.Diagnostics;
using System.IO;
using System.Text;
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 Wpf.Ui.Controls;
using static NfcClient.MainViewModel;
using static System.Net.Mime.MediaTypeNames;
namespace NfcClient
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : FluentWindow
{
private IConfiguration _config;
private readonly HubConnection _connection;
public MainWindow()
{
InitializeComponent();
var builder = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true);
_config = builder.Build();
var hubUrl = _config["SignalR:HubUrl"];
BaseUrl.url = _config["Service:Url"];
#region SignalR
_connection = new HubConnectionBuilder()
.WithUrl(hubUrl)
.Build();
_connection.StartAsync();
_connection.On<string, string>("Music", (user, message) =>
{
Dispatcher.Invoke(() =>
{
webView.Source = new Uri(message);
if (IsSend)
{
MyNotifyIcon.ShowBalloonTip($"接下来播放:", $"{user}", BalloonIcon.None);
}
});
});
#endregion
this.DataContext = new MainViewModel(_config);
this.Visibility = Visibility.Hidden;
//((MainViewModel)DataContext).CreatedTip += ViewModel_CreatedTip;
}
private async void WebView2_NavigationCompleted(object sender, Microsoft.Web.WebView2.Core.CoreWebView2NavigationCompletedEventArgs e)
{
if (e.IsSuccess)
{
await webView.EnsureCoreWebView2Async();
//await webView.CoreWebView2.ExecuteScriptAsync("document.body.style.backgroundColor = 'transparent';");
await webView.CoreWebView2.ExecuteScriptAsync("document.getElementById('play').click();");
//await webView.CoreWebView2.ExecuteScriptAsync("document.getElementById('player').style.margin = '0';");
}
}
public static readonly DependencyProperty IsSendProperty =
DependencyProperty.Register(
nameof(IsSend),
typeof(bool),
typeof(MainWindow),
new PropertyMetadata(true));
public bool IsSend
{
get { return (bool)GetValue(IsSendProperty); }
set { SetValue(IsSendProperty, value); }
}
private void Add_Click(object sender, RoutedEventArgs e)
{
AddView addView = new AddView();
addView.Show();
}
private void Update_Click(object sender, RoutedEventArgs e)
{
var item = list.SelectedItem as ListBar;
if (item != null)
{
UpdateView updateView = new UpdateView(item);
updateView.Show();
}
}
//private void ViewModel_CreatedTip(object sender, CreatedTipEventArgs e)
//{
// if (IsSend)
// {
// MyNotifyIcon.ShowBalloonTip($"{e.title}", $"{e.message}", BalloonIcon.None);
// }
//}
}
}