FolderPicker.SuggestedStartLocation Proprietà

Definizione

Ottiene o imposta il percorso iniziale in cui la selezione cartelle cerca le cartelle da presentare all'utente.

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

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

Valore della proprietà

Identificatore della posizione iniziale.

Esempio

L'esempio di selezione file illustra come visualizzare i file di qualsiasi tipo nella selezione file.

Questo breve codice di esempio illustra un'apertura di FilePicker in un percorso richiesto.

private async void Button_click(object sender, RoutedEventArgs e)
{
    FileOpenPicker filePicker = new FileOpenPicker();
    filePicker.SuggestedStartLocation = PickerLocationId.DocumentsLibrary;
    filePicker.ViewMode = PickerViewMode.List;
    filePicker.FileTypeFilter.Add(".txt");
    StorageFile file = await filePicker.PickSingleFileAsync();
}

Commenti

La cartella SuggestedStartLocation non viene sempre usata come percorso iniziale per la selezione cartelle. Per dare all'utente un senso di coerenza, il selettore cartelle ricorda l'ultimo percorso a cui l'utente è stato spostato e verrà in genere avviato in tale posizione.

Si applica a