summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls/LegacyRepro/SampleViewCell.xaml.cs
blob: f7808d1b704c7ba3165ba7889889bc033a6e29e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;


namespace App2
{

    public partial class SampleViewCell : ViewCell
    {
	    MenuItem _overRideItemmenuitem = null;
        public SampleViewCell()
        {
            try
            {
                InitializeComponent();

                _overRideItemmenuitem = new MenuItem();
                _overRideItemmenuitem.Text = "Over Ride";
                _overRideItemmenuitem.IsDestructive = true;
                _overRideItemmenuitem.Clicked += OverRide_Clicked;

                //this.ContextActions.Add(OverRideItemmenuitem);

                //Height = 300;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }

	    void OverRide_Clicked(object sender, EventArgs e)
        {
            try
            {
                var obj = (CheckListDetails)((MenuItem)sender).BindingContext;
                obj.ChecklistStatus = CheckListStatus.OverRide;

                SetContextActions();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }

	    void Checklist_tapped(object sender, EventArgs e)
        {
            try
            {
                var selectItem = (CheckListDetails)((Grid)sender).BindingContext;

                if (selectItem != null && selectItem.ChecklistStatus != CheckListStatus.OverRide)
                {
                    selectItem.ChecklistStatus = CheckListStatus.Completed;

                    SetContextActions();
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }

        //protected override void OnPropertyChanged(string propertyName = null)
        //{
        //    base.OnPropertyChanged(propertyName);
        //    if(propertyName == ViewCell.BindingContextProperty.PropertyName)
        //    {
        //        setContextActions();
        //    }
        //}
        protected override void OnBindingContextChanged()
        {
            base.OnBindingContextChanged();
            SetContextActions();
        }

	    void SetContextActions()
        {
            try
            {
                if (BindingContext != null)
                {
                    var obj = (CheckListDetails)BindingContext;

                    if (obj.ChecklistStatus == CheckListStatus.Default)
                    {
                        if (ContextActions.Count == 0)
                        {
                            ContextActions.Add(_overRideItemmenuitem);
                        }
                    }
                    else if (obj.ChecklistStatus == CheckListStatus.Completed)
                    {
                        if (ContextActions.Count > 0)
                        {

                            ContextActions.Remove(_overRideItemmenuitem);
                            if (_overRideItemmenuitem != null)
                            {
                                _overRideItemmenuitem.Clicked -= OverRide_Clicked;
                                _overRideItemmenuitem = null;
                            }
                        }


                    }
                    else if (obj.ChecklistStatus == CheckListStatus.Pending)
                    {
                        if (ContextActions.Count == 0)
                        {
                            ContextActions.Add(_overRideItemmenuitem);
                        }


                    }
                    else if (obj.ChecklistStatus == CheckListStatus.OverRide)
                    {
                        if (ContextActions.Count > 0)
                        {
                            ContextActions.Remove(_overRideItemmenuitem);
                            if (_overRideItemmenuitem != null)
                            {
                                _overRideItemmenuitem.Clicked -= OverRide_Clicked;
                                _overRideItemmenuitem = null;
                            }

                        }
                    }

                }


            }
            catch (Exception ex)
            {
                throw ex;
            }
        }

    }
}