ItemsSourceView.KeyFromIndex(Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索指定索引处项的唯一标识符 (键) 。
public:
virtual Platform::String ^ KeyFromIndex(int index) = KeyFromIndex;
winrt::hstring KeyFromIndex(int const& index);
public string KeyFromIndex(int index);
function keyFromIndex(index)
Public Function KeyFromIndex (index As Integer) As String
参数
- index
-
Int32
int
要获取其键的项的索引。
返回
位于指定 索引处的项的唯一标识符 (键) 。
注解
在调用此方法之前,请检查 HasKeyIndexMapping 属性是否 为 true 。 如果数据源不支持唯一 ID (键值) ,则此方法会导致 NotImplementedException。
使用 Count 属性可确保传递有效的 索引。