コード例 #1
0
        void onDataChanged()
        {
            Content.DestroyAllChild();

            mData.Model.mTodoitem.Where(item => item.Completed == false).ForEach(item =>
            {
                UITodoitem.Instantiate()
                .Parent(Content)
                .LocalIdentity()
                .ApplySelfTo((self) => self.Init(item))
                .Show();
            });
        }