コード例 #1
0
        private void btn_Notificar_Click(object sender, EventArgs e)
        {
            if (infrator != null)
            {
                isFavorite         = !isFavorite;
                btn_Favoritar.Text = isFavorite ? "★" : "☆";

                if (isFavorite)
                {
                    Data_Controller.Add_Favorite(infrator.Id);
                }
                else
                {
                    Data_Controller.Remove_Favorite(infrator.Id, false);
                }
            }
        }