コード例 #1
0
ファイル: ListBox.cs プロジェクト: Winster332/GPUGraphics2D
        public override void Draw()
        {
            UIRenderer.ListBox(this);

            Items.ForEach(item => UIRenderer.RectangleComponent(item));

            Childs.ForEach(c => c.Draw());
        }