コード例 #1
0
 public void SetCellRendererConfigurator(ICellRendererConfigurator configurator)
 {
     m_cellRendererConfigurator = configurator;
     foreach (T element in m_elements)
     {
         element.SetConfigurator(configurator);
     }
 }
コード例 #2
0
        public void SetConfigurator(ICellRendererConfigurator configurator)
        {
            int i = 0;

            for (int count = m_companionItems.Count; i < count; i++)
            {
                m_companionItems[i].SetCellRendererConfigurator(configurator);
            }
        }
コード例 #3
0
ファイル: Item.cs プロジェクト: hussein-aitlahcen/nevaw
        public void SetCellRendererConfigurator(ICellRendererConfigurator configurator)
        {
            m_cellRendererConfigurator = configurator;
            CellRenderer cellRendererInstance = m_cellRendererInstance;

            if (!(cellRendererInstance == null))
            {
                cellRendererInstance.SetConfigurator(configurator);
            }
        }
コード例 #4
0
 public override void SetConfigurator(ICellRendererConfigurator configurator, bool andUpdate = true)
 {
     SetConfigurator((U)configurator, andUpdate);
 }