コード例 #1
0
ファイル: UIImageButton.cs プロジェクト: ogazitt/zaplify
        public override void TouchesEnded(MonoTouch.Foundation.NSSet touches, UIEvent evt)
        {
            UITableViewCell cell = this.Superview as UITableViewCell;

            if (cell != null)
            {
                cell.SetHighlighted(false, false);
            }

            if (Clicked != null)
            {
                Clicked(this, new EventArgs());
            }
            //base.TouchesEnded(touches, evt);
        }