0

我无法区分用户是显式切换切换开关还是以编程方式打开/关闭。启动弹出窗口时,我需要为切换开关设置初始值。然后,如果用户明确更改值,我需要引发一个事件。所以我尝试在 ToggleSwitch 上使用 PointerReleased 事件而不是 Toggled 事件,但这不会在某些机器上触发。

有什么想法可以解决这个问题吗?

非常感谢提前

4

2 回答 2

0

尝试将您的 ToggleSwitch 包装在透明 Grid 中并将 Tapped 事件处理程序设置为它。Tapped 事件将仅由用户交互引发。您还需要在 Tapped 事件处理程序中以编程方式切换它,以模仿标准行为。

<Grid Tapped="ToggleSwitchGrid_Tapped"
      Background="Transparent">
    <ToggleSwitch IsHitTestVisible="False" />
</Grid>
于 2015-01-04T16:27:45.883 回答
0

PointerReleased 事件可以解决您的问题。只需确定它是否是这样的左指针:

void ToggleSwitch_PointerPressed(object sender, PointerRoutedEventArgs e)
{
    // Check for input device
    if (e.Pointer.PointerDeviceType == Windows.Devices.Input.PointerDeviceType.Mouse)
    {
        var properties = e.GetCurrentPoint(this).Properties;
        if (properties.IsLeftButtonPressed)
        {
            // Left button pressed
        }
        else if (properties.IsRightButtonPressed)
        {
            // Right button pressed
        }
    }
}
于 2016-11-01T20:02:22.483 回答