private void Control_LongClick(object sender, Android.Views.View.LongClickEventArgs e)
        {
            Console.WriteLine("Invoking long click command");
            var command = GesturesEffect.GetLongCommand(Element);

            command?.Execute(GesturesEffect.GetLongCommandParameter(Element));
        }
コード例 #2
0
        private void HandleLongClick()
        {
            var command = GesturesEffect.GetLongCommand(Element);

            command?.Execute(GesturesEffect.GetLongCommandParameter(Element));
        }