Example #1
0
        public void BrowseForValue()
        {
            PropertyGridCategory propertyGridCategory = propertyGrid.Category("Input");
            PropertyGridProperty property             = propertyGridCategory.GetProperty("FileName");

            property.BrowseForValue();
            keyboard.PressSpecialKey(KeyboardInput.SpecialKeys.ESCAPE);
        }
        public void BrowseForValueTest()
        {
            var propertyGridCategory = propertyGrid.Category("Input");
            var property             = propertyGridCategory.GetProperty("FileName");

            property.BrowseForValue();
            MainWindow.ModalWindow(UIItemIdAppXmlConfiguration.Instance.OpenFileDialogTitle).Close();
        }
Example #3
0
        void BrowseForValue()
        {
            PropertyGridCategory propertyGridCategory = propertyGrid.Category("Input");
            PropertyGridProperty property             = propertyGridCategory.GetProperty("FileName");

            property.BrowseForValue();
            MainWindow.ModalWindow("Open File").Close();
        }