我正在使用Coded-UI自动化桌面应用程序,我需要通过单击“是”来关闭一个对话框弹出窗口。任何人都可以帮助我使用哪个属性? 我尝试了以下代码,但没有使用
UITestControl c = new UITestControl();
c.TechnologyName = "MSAA";
c.SearchProperties.Add("ControlType", "Dialog");
c.SearchProperties.Add("ClassName", "#32770");
c.SearchProperties.Add("Name", "Desktop application");
DialogResult dr = new DialogResult();
Form f = new Form();
dr = f.ShowDialog();
if (dr == DialogResult.Yes)
{
MessageBox.Show("user clicked on yes");
}
else if (dr == DialogResult.No)
{
MessageBox.Show("user clicked on no");
}