コード例 #1
0
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            TPTest t   = new TPTest();
            int    ret = t.TestAllCases();

            TestInfo.Text = "First launch, UT return value is:" + ret.ToString();
        }
コード例 #2
0
ファイル: MainPage.xaml.cs プロジェクト: zzchu/wme-ref-app
        // Constructor
        public MainPage()
        {
            InitializeComponent();

            TPTest t = new TPTest();

            t.TestAllCases();
            // Sample code to localize the ApplicationBar
            //BuildLocalizedApplicationBar();
        }