mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-27 09:23:26 +03:00
* Interaction * Remove view action * ViewModel-first * MainGirdOrientation Hot Reload * Fix avalonia preview * Remove CloseWindowInteraction * Fix * Avoid threading issues * Fix * ProfilesSelect * Try fix previewer * Remove AppEvents.ProfilesRefreshRequested * Remove AppEvents.SubscriptionsRefreshRequested * Remove AppEvents.ProxiesReloadRequested * Remove AppEvents.AdjustMainLvColWidthRequested * Remove AppEvents.SetDefaultServerRequested * Remove AppEvents.RoutingsMenuRefreshRequested * Remove AppEvents.TestServerRequested * Remove AppEvents.InboundDisplayRequested * Remove AppEvents.SubscriptionsUpdateRequested * Remove AppEvents.ShowHideWindowRequested * Remove AppEvents.ReloadRequested * Remove AppEvents.AddServerRequested * Fix
18 lines
713 B
C#
18 lines
713 B
C#
namespace ServiceLib.Events;
|
|
|
|
public static class AppEvents
|
|
{
|
|
public static readonly EventChannel<Unit> AddServerViaClipboardRequested = new();
|
|
public static readonly EventChannel<bool> HasUpdateNotified = new();
|
|
|
|
public static readonly EventChannel<ServerSpeedItem> DispatcherStatisticsRequested = new();
|
|
|
|
public static readonly EventChannel<string> SendSnackMsgRequested = new();
|
|
public static readonly EventChannel<string> SendMsgViewRequested = new();
|
|
|
|
public static readonly EventChannel<Unit> AppExitRequested = new();
|
|
public static readonly EventChannel<bool> ShutdownRequested = new();
|
|
|
|
public static readonly EventChannel<ESysProxyType> SysProxyChangeRequested = new();
|
|
}
|