Window.Current 属性

定义

获取当前线程的窗口。

public:
 static property Window ^ Current { Window ^ get(); };
static Window Current();
public static Window Current { get; }
var window = Window.current;
Public Shared ReadOnly Property Current As Window

属性值

当前激活的窗口。

注解

此属性的值取决于调用它的线程。 如果从 UI 线程调用,则该值是该线程的 Window 实例。 在任何其他线程上,该值为 null

适用于