AppointmentManagerForUser.ShowTimeFrameAsync(DateTime, TimeSpan) 方法

定义

显示约会提供程序应用的主要 UI。 这通常显示约会日历中的时间范围。

public:
 virtual IAsyncAction ^ ShowTimeFrameAsync(DateTime timeToShow, TimeSpan duration) = ShowTimeFrameAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction ShowTimeFrameAsync(DateTime const& timeToShow, TimeSpan const& duration);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction ShowTimeFrameAsync(System.DateTimeOffset timeToShow, System.TimeSpan duration);
function showTimeFrameAsync(timeToShow, duration)
Public Function ShowTimeFrameAsync (timeToShow As DateTimeOffset, duration As TimeSpan) As IAsyncAction

参数

timeToShow
DateTime DateTimeOffset

一个日期和时间对象,指定约会提供程序应用应显示的时间范围的开始。

duration
TimeSpan TimeSpan

一个时间跨度,提示约会提供程序应用应显示多长时间的时间范围。

返回

此方法返回时,不返回结果。 完成后,将调用由get_Completed / Completed 指定的 AsyncActionCompletedHandler

属性

Windows 要求

应用功能
appointmentsSystem

注解

此方法使用表示日期-时间和时间跨度的参数值,这些值根据你使用哪种语言以不同的方式表示。

  • 在 JavaScript 中,使用 Date 对象设置 timeToShow 值。 使用 TimeSpan 设置持续时间值,以 100 纳秒为单位表示时间跨度。
  • 在 Visual C++ 组件扩展 (C++/CX) 中,使用 DateTime 结构设置 timeToShow 值。 使用 TimeSpan 设置持续时间值,以 100 纳秒为单位表示时间跨度。
  • 在 C# 中,将 System.DateTimeOffset 值用于 timeToShow,将 System.TimeSpan 值用于 持续时间。 可以使用这些结构的实用工具 API 来声明值。

有关如何管理约会的信息,请参阅 管理约会

适用于