AppointmentManager.ShowAddAppointmentAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ShowAddAppointmentAsync(Appointment, Rect) |
显示约会提供程序添加约会 UI,使用户能够添加约会。 |
ShowAddAppointmentAsync(Appointment, Rect, Placement) |
显示约会提供程序添加约会 UI,使用户能够添加约会。 |
ShowAddAppointmentAsync(Appointment, Rect)
显示约会提供程序添加约会 UI,使用户能够添加约会。
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)
参数
- appointment
- Appointment
表示要添加的约会的信息的 对象。
- selection
- Rect
Rect 是用户选择的矩形区域, (例如,按下按钮) ,操作系统将围绕该按钮显示“添加约会 UI”,而不是在该矩形区域内。 例如,如果应用使用按钮显示 Rect,则传递按钮的 Rect ,以便“添加约会”UI 显示在按钮周围,而不是重叠。
返回
此方法完成后,它将返回一个表示约会的 String 对象。 这用作约会标识符,供将来更新或删除时参考。 如果返回的约会标识符为空字符串,则约会未添加到约会提供程序应用。
- 属性
Windows 要求
应用功能 |
appointmentsSystem
|
注解
调用此方法时,约会提供程序应用会显示在应用托管的浅色消除窗格中。
在Windows Phone,此方法的行为与 ShowEditNewAppointmentAsync 相同,因为用户可编辑“添加约会”UI 中的字段。
有关如何管理约会的信息,请参阅 管理约会。
另请参阅
适用于
ShowAddAppointmentAsync(Appointment, Rect, Placement)
显示约会提供程序添加约会 UI,使用户能够添加约会。
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)
参数
- appointment
- Appointment
表示要添加的约会的信息的 对象。
- selection
- Rect
Rect 是用户选择的矩形区域, (例如,按下按钮) ,操作系统将围绕该按钮显示“添加约会 UI”,而不是在该矩形区域内。 例如,如果应用使用按钮显示 Rect,则传递按钮的 Rect ,以便“添加约会”UI 显示在按钮周围,而不是重叠。
返回
此方法完成后,它将返回一个表示约会的 String 对象。 这用作约会标识符,供将来更新或删除时参考。 如果返回的约会标识符为空字符串,则约会未添加到约会提供程序应用。
- 属性
Windows 要求
应用功能 |
appointmentsSystem
|
注解
请参阅以下重载中的注释: ShowAddAppointmentAsync。