Esempio n. 1
0
        public void showClick(ShowRow row, Show s)
        {
            //Set them all normal
            foreach (ShowRow r in ((MainView)_current_view).getShowRows())
                r.setNormal();

            //set ours green
            row.setGreen();

            showRowHighlight = row;
            showHighlight = s;

            //enable show buttons
            ((MainView)_current_view).enableEdit(MainView.BAND_TAB_SHOW);
            ((MainView)_current_view).enableDelete(MainView.BAND_TAB_SHOW);
        }