Example #1
0
 public void OnNotification(object sender, AstrumClient.NotificationEventArgs e)
 {
     if (notifyIcon != null)
     {
         notifyIcon.ShowBalloonTip(e.Duration, client.ViewModel.WindowTitle, e.Message, ToolTipIcon.None);
     }
 }
Example #2
0
        public MainWindow()
        {
            InitializeComponent();

            client = new AstrumClient();
            client.OnNotification += OnNotification;

            this.DataContext = client.ViewModel;
            InitialTray();

            initLoginPanel();
        }
Example #3
0
 public MypageHandler(AstrumClient client)
 {
     _client = client;
 }
Example #4
0
 public GiftHandler(AstrumClient client)
 {
     _client = client;
 }
Example #5
0
 public BreedingHandler(AstrumClient client)
 {
     _client = client;
 }
Example #6
0
 public LimitedRaidHandler(AstrumClient client)
 {
     _client = client;
 }
Example #7
0
 public TraningHandler(AstrumClient client)
 {
     _client = client;
 }
Example #8
0
 public ItemHandler(AstrumClient client)
 {
     _client = client;
 }
Example #9
0
 public GuildBattleHandler(AstrumClient client)
 {
     _client = client;
 }
Example #10
0
 public QuestHandler(AstrumClient client)
 {
     _client = client;
 }
Example #11
0
 public GachaHandler(AstrumClient client)
 {
     _client = client;
 }
Example #12
0
 public SpecialAreaHandler(AstrumClient client)
     : base(client)
 {
 }
Example #13
0
 public FuryRaidHandler(AstrumClient client)
 {
     _client = client;
 }
Example #14
0
 public TalkHandler(AstrumClient client)
 {
     _client = client;
 }