AppointmentManager.ShowAddAppointmentAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
ShowAddAppointmentAsync(Appointment, Rect) |
Mostra l'interfaccia utente Aggiungi appuntamento provider appuntamenti per consentire all'utente di aggiungere un appuntamento. |
ShowAddAppointmentAsync(Appointment, Rect, Placement) |
Mostra l'interfaccia utente Aggiungi appuntamento provider appuntamenti per consentire all'utente di aggiungere un appuntamento. |
ShowAddAppointmentAsync(Appointment, Rect)
Mostra l'interfaccia utente Aggiungi appuntamento provider appuntamenti per consentire all'utente di aggiungere un appuntamento.
public:
static IAsyncOperation<Platform::String ^> ^ ShowAddAppointmentAsync(Appointment ^ appointment, Rect selection);
/// [Windows.Foundation.Metadata.Overload("ShowAddAppointmentAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<winrt::hstring> ShowAddAppointmentAsync(Appointment const& appointment, Rect const& selection);
[Windows.Foundation.Metadata.Overload("ShowAddAppointmentAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<string> ShowAddAppointmentAsync(Appointment appointment, Rect selection);
function showAddAppointmentAsync(appointment, selection)
Public Shared Function ShowAddAppointmentAsync (appointment As Appointment, selection As Rect) As IAsyncOperation(Of String)
Parametri
- appointment
- Appointment
Oggetto che rappresenta le informazioni per l'appuntamento da aggiungere.
- selection
- Rect
Rect è l'area rettangolare della selezione utente (ad esempio, premendo un pulsante), intorno alla quale il sistema operativo visualizza l'interfaccia utente Aggiungi appuntamento, non all'interno di tale area rettangolare. Ad esempio, se un'app usa un pulsante per visualizzare Rect, passare il rect del pulsante in modo che l'interfaccia utente Aggiungi appuntamento venga visualizzata intorno al pulsante, non sovrapponendola.
Restituisce
Al termine di questo metodo, restituisce un oggetto String che rappresenta l'appuntamento. Viene usato come identificatore di appuntamento per riferimento futuro durante l'aggiornamento o la rimozione. Se l'identificatore dell'appuntamento restituito è una stringa vuota, l'appuntamento non è stato aggiunto all'app provider Appointments.
- Attributi
Requisiti Windows
Funzionalità dell'app |
appointmentsSystem
|
Commenti
Quando chiami questo metodo, l'app Provider di appuntamenti viene visualizzata in un riquadro di chiusura chiaro ospitato dall'app.
In Windows Phone, questo metodo si comporta come ShowEditNewAppointmentAsync, in quanto i campi nell'interfaccia utente Aggiungi appuntamento sono modificabili dall'utente.
Per informazioni su come gestire gli appuntamenti, vedi Gestire gli appuntamenti.
Vedi anche
Si applica a
ShowAddAppointmentAsync(Appointment, Rect, Placement)
Mostra l'interfaccia utente Aggiungi appuntamento provider appuntamenti per consentire all'utente di aggiungere un appuntamento.
public:
static IAsyncOperation<Platform::String ^> ^ ShowAddAppointmentAsync(Appointment ^ appointment, Rect selection, Placement preferredPlacement);
/// [Windows.Foundation.Metadata.Overload("ShowAddAppointmentWithPlacementAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<winrt::hstring> ShowAddAppointmentAsync(Appointment const& appointment, Rect const& selection, Placement const& preferredPlacement);
[Windows.Foundation.Metadata.Overload("ShowAddAppointmentWithPlacementAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<string> ShowAddAppointmentAsync(Appointment appointment, Rect selection, Placement preferredPlacement);
function showAddAppointmentAsync(appointment, selection, preferredPlacement)
Public Shared Function ShowAddAppointmentAsync (appointment As Appointment, selection As Rect, preferredPlacement As Placement) As IAsyncOperation(Of String)
Parametri
- appointment
- Appointment
Oggetto che rappresenta le informazioni per l'appuntamento da aggiungere.
- selection
- Rect
Rect è l'area rettangolare della selezione utente (ad esempio, premendo un pulsante), intorno alla quale il sistema operativo visualizza l'interfaccia utente Aggiungi appuntamento, non all'interno di tale area rettangolare. Ad esempio, se un'app usa un pulsante per visualizzare Rect, passare il rect del pulsante in modo che l'interfaccia utente Aggiungi appuntamento venga visualizzata intorno al pulsante, non sovrapponendola.
- preferredPlacement
- Placement
Posizione che descrive il posizionamento preferito dell'interfaccia utente Aggiungi appuntamento.
Restituisce
Al termine di questo metodo, restituisce un oggetto String che rappresenta l'appuntamento. Viene usato come identificatore di appuntamento per riferimento futuro durante l'aggiornamento o la rimozione. Se l'identificatore dell'appuntamento restituito è una stringa vuota, l'appuntamento non è stato aggiunto all'app provider Appointments.
- Attributi
Requisiti Windows
Funzionalità dell'app |
appointmentsSystem
|
Commenti
Vedere le osservazioni nell'overload seguente: ShowAddAppointmentAsync.