【发布时间】:2015-04-20 15:26:32
【问题描述】:
考虑:
wxGrid* grid = new wxGrid(panel, -1, wxPoint( 0, 0 ), wxSize( 400, 300));
grid->CreateGrid( 5, 5);
grid->SetColLabelValue(0, _T("col0"));
grid->SetColLabelValue(1, _T("col1"));
grid->SetColLabelValue(2, _T("col2"));
grid->SetRowLabelValue(0, _T("ro0"));
grid->SetRowLabelValue(1, _T("ro1"));
grid->SetRowLabelValue(2, _T("ro2"));
当我运行我的项目时,屏幕阅读器 JAWS 似乎无法识别 wxGrid,它只显示“网格窗口”,但在按下 Tab 键并使用箭头键导航时它不会读取其中的任何列或行。我应该怎么做才能让 JAWS 和其他屏幕阅读器可以访问 wsGrid?
【问题讨论】:
标签: c++ user-interface accessibility wxwidgets screen-readers