FileSavePicker.SuggestedStartLocation 属性

定义

获取或设置文件保存选取器向用户建议的位置作为保存文件的位置。

public:
 property PickerLocationId SuggestedStartLocation { PickerLocationId get(); void set(PickerLocationId value); };
PickerLocationId SuggestedStartLocation();

void SuggestedStartLocation(PickerLocationId value);
public PickerLocationId SuggestedStartLocation { get; set; }
var pickerLocationId = fileSavePicker.suggestedStartLocation;
fileSavePicker.suggestedStartLocation = pickerLocationId;
Public Property SuggestedStartLocation As PickerLocationId

属性值

用于保存文件的初始建议位置。

注解

SuggestedStartLocation 并不总是用作文件选取器起始位置。 为了为用户提供一致性感,文件选取器会记住用户导航到的最后一个位置,并且通常从该位置开始。

适用于