Beispiel #1
0
        void LogsClicked(ButtonCellClickEventArgs e)
        {
            Tree tree = this._BS_trees[e.RowNumber] as Tree;

            if (tree == null)
            {
                return;
            }

            ShowLogs(tree);
        }
Beispiel #2
0
        protected void LogsClicked(ButtonCellClickEventArgs e)
        {
            Tree tree;

            try
            {
                tree = this.ViewLogicController.CurrentTree;
            }
            catch { return; }
            if (tree == null)
            {
                return;
            }

            ShowLogs(tree);
        }
 void buttonCol_Click(ButtonCellClickEventArgs e)
 {
     label1.Text = e.RowNumber.ToString();
 }