Esempio n. 1
0
 public void SetCellRendererConfigurator(ICellRendererConfigurator configurator)
 {
     m_cellRendererConfigurator = configurator;
     foreach (T element in m_elements)
     {
         element.SetConfigurator(configurator);
     }
 }
        public void SetConfigurator(ICellRendererConfigurator configurator)
        {
            int i = 0;

            for (int count = m_companionItems.Count; i < count; i++)
            {
                m_companionItems[i].SetCellRendererConfigurator(configurator);
            }
        }
Esempio n. 3
0
        public void SetCellRendererConfigurator(ICellRendererConfigurator configurator)
        {
            m_cellRendererConfigurator = configurator;
            CellRenderer cellRendererInstance = m_cellRendererInstance;

            if (!(cellRendererInstance == null))
            {
                cellRendererInstance.SetConfigurator(configurator);
            }
        }
Esempio n. 4
0
 public override void SetConfigurator(ICellRendererConfigurator configurator, bool andUpdate = true)
 {
     SetConfigurator((U)configurator, andUpdate);
 }