0

我在我的 wpf 项目中使用 RadPaneGroup 来拥有多选项卡 RadDocumentPane,并且我正在使用 Telerik Rad 组件,当我使用此代码时:RadPaneGroup.Items.Refresh(); 所有打开的选项卡都会自动关闭。有任何关于在 wpf 中使用 RadPaneGroup 和 RadDocumentPane 的经验吗?感谢您的快速答复。

4

1 回答 1

0

What are trying to do? I am assuming you are trying to refresh something,

in which case you may need to supply the index of the item you are trying to refresh ... Like this

RadPaneGroup.Items[0].Refresh;

0 here is the counter or the item number you are trying to refersh also took out () from refresh.

Hope this helped!!

于 2012-12-03T15:44:39.540 回答