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(); }
void BrowseForValue() { PropertyGridCategory propertyGridCategory = propertyGrid.Category("Input"); PropertyGridProperty property = propertyGridCategory.GetProperty("FileName"); property.BrowseForValue(); MainWindow.ModalWindow("Open File").Close(); }