コード例 #1
0
        public void ExpandedTest()
        {
            WPFTreeViewItem item0 = new WPFTreeViewItem(_ctrl._item0);

            item0.EmulateChangeExpanded(true);
            Assert.IsTrue(item0.IsExpanded);
        }
コード例 #2
0
        public void EmulteChangeExpandedAsyncTest()
        {
            WPFTreeViewItem item          = new WPFTreeViewItem(_ctrl._item1);
            Async           async         = new Async();
            WindowControl   windowControl = WindowControl.FromZTop(_app);

            item.EmulateChangeExpanded(true, async);
            new NativeMessageBox(windowControl.WaitForNextModal()).EmulateButtonClick("OK");
            async.WaitForCompletion();
        }
コード例 #3
0
 public void EmulteChangeExpandedAsyncTest()
 {
     WPFTreeViewItem item = new WPFTreeViewItem(_ctrl._item1);
     Async async = new Async();
     WindowControl windowControl = WindowControl.FromZTop(_app);
     item.EmulateChangeExpanded(true, async);
     new NativeMessageBox(windowControl.WaitForNextModal()).EmulateButtonClick("OK");
     async.WaitForCompletion();
 }
コード例 #4
0
 public void ExpandedTest()
 {
     WPFTreeViewItem item0 = new WPFTreeViewItem(_ctrl._item0);
     item0.EmulateChangeExpanded(true);
     Assert.IsTrue(item0.IsExpanded);
 }