FormXML.Designer.cs

namespace WindowsMedia
{
    partial class FormXML
    {
        private System.ComponentModel.IContainer components = null;

        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormXML));
            this.toolStripInfo = new System.Windows.Forms.ToolStrip();
            this.toolButtonAdd = new System.Windows.Forms.ToolStripButton();
            this.toolButtonEdit = new System.Windows.Forms.ToolStripButton();
            this.toolButtonDelete = new System.Windows.Forms.ToolStripButton();
            this.toolButtonSave = new System.Windows.Forms.ToolStripButton();
            this.gridViewXML = new System.Windows.Forms.DataGridView();
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.toolStripInfo.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewXML)).BeginInit();
            this.SuspendLayout();
            //
            // toolStripInfo
            //
            this.toolStripInfo.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStripInfo.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolButtonAdd,
            this.toolButtonEdit,
            this.toolButtonDelete,
            this.toolButtonSave});
            this.toolStripInfo.Location = new System.Drawing.Point(0, 0);
            this.toolStripInfo.Name = "toolStripInfo";
            this.toolStripInfo.Size = new System.Drawing.Size(392, 25);
            this.toolStripInfo.TabIndex = 1;
            //
            // toolButtonAdd
            //
            this.toolButtonAdd.Image = ((System.Drawing.Image)(resources.GetObject("toolButtonAdd.Image")));
            this.toolButtonAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolButtonAdd.Margin = new System.Windows.Forms.Padding(8, 1, 0, 2);
            this.toolButtonAdd.Name = "toolButtonAdd";
            this.toolButtonAdd.Size = new System.Drawing.Size(67, 22);
            this.toolButtonAdd.Text = "添加(&A)";
            this.toolButtonAdd.Click += new System.EventHandler(this.toolButtonAdd_Click);
            //
            // toolButtonEdit
            //
            this.toolButtonEdit.Image = ((System.Drawing.Image)(resources.GetObject("toolButtonEdit.Image")));
            this.toolButtonEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolButtonEdit.Margin = new System.Windows.Forms.Padding(4, 1, 0, 2);
            this.toolButtonEdit.Name = "toolButtonEdit";
            this.toolButtonEdit.Size = new System.Drawing.Size(67, 22);
            this.toolButtonEdit.Text = "编辑(&E)";
            this.toolButtonEdit.Click += new System.EventHandler(this.toolButtonEdit_Click);
            //
            // toolButtonDelete
            //
            this.toolButtonDelete.Image = ((System.Drawing.Image)(resources.GetObject("toolButtonDelete.Image")));
            this.toolButtonDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolButtonDelete.Margin = new System.Windows.Forms.Padding(4, 1, 0, 2);
            this.toolButtonDelete.Name = "toolButtonDelete";
            this.toolButtonDelete.Size = new System.Drawing.Size(67, 22);
            this.toolButtonDelete.Text = "删除(&D)";
            this.toolButtonDelete.Click += new System.EventHandler(this.toolButtonDelete_Click);
            //
            // toolButtonSave
            //
            this.toolButtonSave.Image = ((System.Drawing.Image)(resources.GetObject("toolButtonSave.Image")));
            this.toolButtonSave.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolButtonSave.Margin = new System.Windows.Forms.Padding(4, 1, 0, 2);
            this.toolButtonSave.Name = "toolButtonSave";
            this.toolButtonSave.Size = new System.Drawing.Size(67, 22);
            this.toolButtonSave.Text = "保存(&S)";
            this.toolButtonSave.Click += new System.EventHandler(this.toolButtonSave_Click);
            //
            // gridViewXML
            //
            this.gridViewXML.AllowUserToAddRows = false;
            this.gridViewXML.AllowUserToDeleteRows = false;
            this.gridViewXML.BackgroundColor = System.Drawing.SystemColors.InactiveCaptionText;
            this.gridViewXML.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.gridViewXML.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.gridViewXML.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column1,
            this.Column2});
            this.gridViewXML.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridViewXML.Location = new System.Drawing.Point(0, 25);
            this.gridViewXML.Name = "gridViewXML";
            this.gridViewXML.RowTemplate.Height = 23;
            this.gridViewXML.Size = new System.Drawing.Size(392, 241);
            this.gridViewXML.TabIndex = 4;
            this.gridViewXML.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridViewXML_CellDoubleClick);
            this.gridViewXML.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridViewXML_CellEndEdit);
            this.gridViewXML.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.gridViewXML_DataError);
            //
            // Column1
            //
            this.Column1.DataPropertyName = "TV";
            this.Column1.HeaderText = "名称";
            this.Column1.Name = "Column1";
            //
            // Column2
            //
            this.Column2.DataPropertyName = "MMS";
            this.Column2.HeaderText = "MMS地址";
            this.Column2.Name = "Column2";
            //
            // FormXML
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(392, 266);
            this.Controls.Add(this.gridViewXML);
            this.Controls.Add(this.toolStripInfo);
            this.Name = "FormXML";
            this.toolStripInfo.ResumeLayout(false);
            this.toolStripInfo.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewXML)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
        #endregion

        private System.Windows.Forms.DataGridView gridViewXML;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
        private System.Windows.Forms.ToolStrip toolStripInfo;
        private System.Windows.Forms.ToolStripButton toolButtonAdd;
        private System.Windows.Forms.ToolStripButton toolButtonDelete;
        private System.Windows.Forms.ToolStripButton toolButtonEdit;
        private System.Windows.Forms.ToolStripButton toolButtonSave;
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值