public void ShowBaloonTip()
        {
            var wordPage = new WordPage();

            _taskBarIcon.ShowCustomBalloon(wordPage, System.Windows.Controls.Primitives.PopupAnimation.Slide, null);
            _taskBarIcon.CustomBalloon.Closed += CustomBalloon_Closed;
        }
Example #2
0
 public PageBatch(WordPage profitLoss, WordPage balanceSheet)
 {
     ProfitLossPage   = profitLoss;
     BalanceSheetPage = balanceSheet;
 }
Example #3
0
 public PageBatch()
 {
     ProfitLossPage   = new WordPage();
     BalanceSheetPage = new WordPage();
 }