Esempio n. 1
0
 public WritePage()
 {
     NavigationCacheMode = NavigationCacheMode.Required;
     InitializeComponent();
     CoreApplication.MainView.CoreWindow.KeyDown += OnKeyDown;
     webTGroup = new SelectItemGroup(true, true);
     finTGroup = new SelectItemGroup(true, true);
     webTGroup.SetTo(webtrans);
     finTGroup.SetTo(fintrans);
     webTGroup.Select += OnSelectTrans;
     finTGroup.Select += OnSelectTrans;
 }
Esempio n. 2
0
 private void OnSelectTrans(object sender, SelectItemGroup.SelectEventArgs e)
 {
     if (e.msg == Message.Selected)
         judgeAdd();
 }