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

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

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

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