Exemplo n.º 1
0
        public void WillDisplayCell(NSTableView tableView, NSObject cell, NSTableColumn tableColumn, nint row)
        {
            Employee emp = DataStore.Employees[(int)row];

            if (tableColumn.Identifier == "DepartmentName")
            {
                NSPopUpButtonCell button = cell as NSPopUpButtonCell;
                button.SetTitle(emp.DepartmentName);
            }
        }