Xamarin.Forms.Switch在更新值时发送Toggled事件

时间:2015-10-06 17:23:25

标签: c# events xamarin xamarin.forms

所以我还在Xamarin.Forms首次亮相。到目前为止,如果我把我遇到的一些麻烦的错误放在一边这么好。这是新人。也许你们其中一个人可以告诉我,我做错了什么。

基本上,我的界面上有一个Xamarin.Forms.Switch,我正在通过Toggled事件监听其状态的变化。该文档说明了此事件:"当用户>切换此开关时引发的事件。"

不幸的是,当我以编程方式更新交换机的值时,会触发事件。

var mySwitch = new Switch ();
mySwitch.Toggled += (object sender, ToggledEventArgs e) => {
    Console.WriteLine ("Switch.Toggled event sent");
};
mySwitch.IsToggled = true;

有什么方法可以防止事件被触发/知道它不是触发事件的用户?

2 个答案:

答案 0 :(得分:4)

您遇到的行为是正确的:每次IsToggled属性更改时,切换都会触发Toggled事件。

我不确定Xamarin.Forms documentation最近是否已更新过,但截至今天它已就Toggled事件说明了这一点:

  

切换此开关时引发的事件

示例代码

以下示例代码可防止在用户未触发Toggled事件时处理Toggled事件

enter image description here

using System;

using Xamarin.Forms;

namespace SwitchToggle
{
    public class SwitchPage : ContentPage
    {
        public SwitchPage()
        {
            var mySwitch = new Switch
            {
                IsToggled = true
            };
            mySwitch.Toggled += HandleSwitchToggledByUser;

            var toggleButton = new Button
            {
                Text = "Toggle The Switch"
            };
            toggleButton.Clicked += (sender, e) =>
            {
                mySwitch.Toggled -= HandleSwitchToggledByUser;
                mySwitch.IsToggled = !mySwitch.IsToggled;
                mySwitch.Toggled += HandleSwitchToggledByUser;
            };

            var mainLayout = new RelativeLayout();

            Func<RelativeLayout, double> getSwitchWidth = (parent) => parent.Measure(mainLayout.Width, mainLayout.Height).Request.Width;
            Func<RelativeLayout, double> getToggleButtonWidth = (parent) => parent.Measure(mainLayout.Width, mainLayout.Height).Request.Width;

            mainLayout.Children.Add(mySwitch,
                Constraint.RelativeToParent((parent) => parent.Width / 2 - getSwitchWidth(parent) / 2),
                Constraint.RelativeToParent((parent) => parent.Height / 2 - mySwitch.Height / 2)
            );
            mainLayout.Children.Add(toggleButton,
                Constraint.RelativeToParent((parent) => parent.Width / 2 - getToggleButtonWidth(parent) / 2),
                Constraint.RelativeToView(mySwitch, (parent, view) => view.Y + view.Height + 10)
            );

            Content = mainLayout;

        }

        async void HandleSwitchToggledByUser(object sender, ToggledEventArgs e)
        {
            await DisplayAlert(
                "Switch Toggled By User",
                "",
                "OK"
            );
        }
    }

    public class App : Application
    {
        public App()
        {
            MainPage = new NavigationPage(new SwitchPage());
        }
    }
}

答案 1 :(得分:3)

每次调用Toggled事件时,当您手动更改切换时,Toggled事件也将触发。

解决方案刚刚设置

mySwitch.Toggled -= HandleSwitchToggledByUser;

在手动更改切换值之前,然后写入

mySwitch.Toggled += HandleSwitchToggledByUser;

手动更改切换后

希望,这会对你有所帮助