如何检测外部显示器是否连接到Windows Phone?

时间:2014-08-26 05:02:26

标签: c# windows-phone

在Android中,如果设备连接到外接显示器,则会进行广播。

我想知道如何在Windows Phone中检测到这一点。

1 个答案:

答案 0 :(得分:0)

易。

///<summary>True when an external display is connected to the MicroHDMI output of this Windows Phone</summary>
static bool isExternalDisplayConnected()
{
    return false;  // No windows phone device has MicroHDMI output, nor any other external display output.
}