public class Item
        {
            private string text;
            private int arry;
            public Item(string text)
            {
                this.text = text;
            }
            public Item(int arry)
            {
                this.arry = arry;
            }
            public string 名称
            {
                get
                {
                    return text;
                }
            }
            public string 值
            {
                get
                {
                    return arry.ToString();
                }
            }
        } 
        private void x1ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            dataGridView1.Visible = true;
            Item[] items = new Item[]
            {
                new Item("主路开关量输入遥信"),
                new Item("主路电参量越限告警遥信"),
                new Item("AB线电压(Uab)"),
            };
            Item[] arry = new Item[] { 
               new Item(1),
               new Item(100),
            };            dataGridView1.DataSource = items; 怎么才能让items和arry都绑定到dataGridView1里呢?
求教了、、、