如何为Xamarin设置OnClick on xlabs.buttongroup?

时间:2015-06-10 22:51:28

标签: xamarin buttongroup xlabs

试图找出如何使用XLabs ButtonGroup for Xamarin Forms。 https://github.com/XLabs/Xamarin-Forms-Labs/wiki/ButtonGroup

我无法找到事件处理程序或以任何方式为点击设置侦听器。

如何使用该按钮的示例代码只是跳过该细节。 https://github.com/XLabs/Xamarin-Forms-Labs/blob/master/Samples/XLabs.Sample/Pages/Controls/ButtonGroupPage.cs

我错过了什么?

谢谢, 布拉德。

1 个答案:

答案 0 :(得分:1)

如果我没记错的话,我已经添加了这些行

    public delegate void ButtonClickedHandler(int index);
    public event ButtonClickedHandler Clicked;
    protected void OnClicked(int index){
        if (Clicked != null) {
            Clicked (index);            
        }
    }

并修改了这个方法

    /// <summary>
    /// Sets the selected button.
    /// </summary>
    /// <param name="o">The o.</param>
    private void SetSelectedButton(object o)
    {
        if((int)o != SelectedIndex)
            OnClicked ((int)o);
        SelectedIndex = (int)o;
    }