• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Forms.ToolStripTextBox类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中System.Windows.Forms.ToolStripTextBox的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.ToolStripTextBox类的具体用法?C# System.Windows.Forms.ToolStripTextBox怎么用?C# System.Windows.Forms.ToolStripTextBox使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



System.Windows.Forms.ToolStripTextBox类属于命名空间,在下文中一共展示了System.Windows.Forms.ToolStripTextBox类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: InitializeComponent

        public void InitializeComponent()
        {
            this.SuspendLayout();

            _enableVariableLayers = new System.Windows.Forms.ToolStripButton();
            _enableVariableLayers.Name = "_enableVariableLayers";
            _enableVariableLayers.Image = Properties.Resources.hide;
            _enableVariableLayers.CheckOnClick = true;
            _enableVariableLayers.CheckedChanged += OnCheckedChanged;

            _interval = new System.Windows.Forms.ToolStripTextBox();
            _interval.Text = "500";
            _interval.Enabled = false;
            _interval.TextChanged += OnTextChanged;

            _timer = new System.Timers.Timer();
            _timer.Interval = 500;
            _timer.Elapsed += OnTouchTimer;

            this.Items.AddRange(new System.Windows.Forms.ToolStripItem[]
            { _enableVariableLayers, _interval });

            this.ResumeLayout();
            this.PerformLayout();
            this.Visible = true;
        }
开发者ID:geobabbler,项目名称:SharpMap,代码行数:26,代码来源:MapVariableLayerToolStrip.cs


示例2: ParallaxToolStrip

        public ParallaxToolStrip(SerialParallax osc, GraphControl gc)
        {
            oscillo = osc;
            graphControl = gc;

            //
            // toolStrip2
            //
            this.toolStrip = new System.Windows.Forms.ToolStrip();
            this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStrip.Location = new System.Drawing.Point(3, 0);
            this.toolStrip.Name = "toolStrip2";
            this.toolStrip.Size = new System.Drawing.Size(243, 25);
            this.toolStrip.TabIndex = 1;
            this.toolStrip.Text = "toolStrip2";

            this.triggerLabel = new System.Windows.Forms.ToolStripLabel();
            this.trigger = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
            this.triggerMode = new System.Windows.Forms.ToolStripComboBox();

            //
            // triggerLabel
            //
            this.triggerLabel.Name = "triggerLabel";
            this.triggerLabel.Size = new System.Drawing.Size(42, 22);
            this.triggerLabel.Text = "Trigger";
            this.toolStrip.Items.Add(this.triggerLabel);

            //
            // trigger
            //
            this.trigger.Name = "trigger";
            this.trigger.Size = new System.Drawing.Size(50, 25);
            this.trigger.Text = "0";
            this.trigger.Validating += new System.ComponentModel.CancelEventHandler(this.trigger_Validating);
            this.trigger.Validated += new System.EventHandler(this.trigger_Validated);
            this.toolStrip.Items.Add(this.trigger);

            //
            // triggerMode
            //
            this.triggerMode.Items.AddRange(new object[] {
            "ch1 ˄",
            "ch1 ˅",
            "ch2 ˄",
            "ch2 ˅",
            "ext ˄"});
            this.triggerMode.Name = "triggerMode";
            this.triggerMode.Size = new System.Drawing.Size(20, 25);
            this.triggerMode.SelectedIndexChanged += new System.EventHandler(this.triggerMode_SelectedIndexChanged);
            triggerMode.SelectedIndex = 0;
            this.toolStrip.Items.Add(this.triggerMode);

            //channels.SelectedIndex = 0;
            trigger.Text = "0";
            triggerMode.SelectedIndex = 0;
            oscillo.TriggerVoltage = (float.Parse(trigger.Text));
        }
开发者ID:valkuc,项目名称:xoscillo,代码行数:59,代码来源:ParallaxToolStrip.cs


示例3: InitialiseComponents

        private void InitialiseComponents()
        {
            
            this.CloseMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.CloseMenuItem.Text = "Close";

            this.ShowMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ShowMenuItem.Text = "Show";
            
            this.ShowSummaryMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ShowSummaryMenuItem.Text = "Summary";

            this.SettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.SettingsMenuItem.Text = "Settings";

            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();

            this.IconContextMenuStrip = new System.Windows.Forms.ContextMenuStrip();
            this.NotificationIcon = new System.Windows.Forms.NotifyIcon();
            //
            //notofication icon
            //
            this.NotificationIcon.Icon = ( (System.Drawing.Icon)( Resources.TaskBarIcon ) );
            this.NotificationIcon.Text = "WorkReportReminder";
            this.NotificationIcon.Visible = true;
            this.NotificationIcon.ContextMenuStrip = this.IconContextMenuStrip;
            this.NotificationIcon.DoubleClick += new System.EventHandler(this.OnNotificationIconDoubleClick);
            // 
            // IconContextMenuStrip
            // 
            this.IconContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[]
                                                         {
                                                             this.ShowMenuItem,
                                                             this.ShowSummaryMenuItem,
                                                             this.SettingsMenuItem,
                                                             this.CloseMenuItem
                                                         });

            this.IconContextMenuStrip.Name = "IconContextMenuStrip";
            this.IconContextMenuStrip.Size = new System.Drawing.Size(182, 124);

            this.IconContextMenuStrip.ResumeLayout(false);
            this.IconContextMenuStrip.PerformLayout();
        }
开发者ID:mjamry,项目名称:WorkReportReminder,代码行数:47,代码来源:UICore.Designer.cs


示例4: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Admin));
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.打开OToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label1 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.comboBox2 = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = null;
     this.bindingNavigator1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.打开OToolStripButton,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.toolStripLabel2,
     this.toolStripSeparator1,
     this.toolStripLabel1,
     this.toolStripSeparator});
     this.bindingNavigator1.Location = new System.Drawing.Point(0, 535);
     this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.Size = new System.Drawing.Size(864, 26);
     this.bindingNavigator1.TabIndex = 3;
     this.bindingNavigator1.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(38, 23);
     this.bindingNavigatorCountItem.Text = "/ {0}";
     this.bindingNavigatorCountItem.ToolTipText = "总页数";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 23);
     this.bindingNavigatorMoveFirstItem.Text = "移到页首";
     this.bindingNavigatorMoveFirstItem.Click += new System.EventHandler(this.bindingNavigatorMoveFirstItem_Click);
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 23);
     this.bindingNavigatorMovePreviousItem.Text = "移到上一页";
     this.bindingNavigatorMovePreviousItem.Click += new System.EventHandler(this.bindingNavigatorMovePreviousItem_Click);
     //
     // bindingNavigatorSeparator
//.........这里部分代码省略.........
开发者ID:rxaa,项目名称:washmange,代码行数:101,代码来源:Admin.designer.cs


示例5: InitializeComponent

 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.txtResult = new System.Windows.Forms.TextBox();
     this.txtExp = new System.Windows.Forms.RichTextBox();
     this.menuRichTextBox = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.粘贴剪切板内容ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.复制计算结果ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.运算符ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.andToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.orToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.xorToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.notToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
     this.sgnToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.intToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.absToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
     this.变量ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.函数ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cmbFunSort = new System.Windows.Forms.ToolStripComboBox();
     this.txtSearchKey = new System.Windows.Forms.ToolStripTextBox();
     this.算式ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.btnbtnReciprocal = new System.Windows.Forms.Button();
     this.btnANS = new System.Windows.Forms.Button();
     this.btnE = new System.Windows.Forms.Button();
     this.btnPow = new System.Windows.Forms.Button();
     this.btnPI = new System.Windows.Forms.Button();
     this.btnPercent = new System.Windows.Forms.Button();
     this.btnSqrt = new System.Windows.Forms.Button();
     this.btnEqual = new System.Windows.Forms.Button();
     this.btnPoint = new System.Windows.Forms.Button();
     this.btnC = new System.Windows.Forms.Button();
     this.btnBackspace = new System.Windows.Forms.Button();
     this.btnComma = new System.Windows.Forms.Button();
     this.btn_e_ = new System.Windows.Forms.Button();
     this.btnBIN = new System.Windows.Forms.Button();
     this.btnB = new System.Windows.Forms.Button();
     this.btnHEX = new System.Windows.Forms.Button();
     this.btnToB = new System.Windows.Forms.Button();
     this.btnToH = new System.Windows.Forms.Button();
     this.btnMod = new System.Windows.Forms.Button();
     this.btnSum = new System.Windows.Forms.Button();
     this.bnt_C = new System.Windows.Forms.Button();
     this.btnnCr = new System.Windows.Forms.Button();
     this.btnnAr = new System.Windows.Forms.Button();
     this.btnFactorial = new System.Windows.Forms.Button();
     this.btnDivide = new System.Windows.Forms.Button();
     this.btnMultiply = new System.Windows.Forms.Button();
     this.btnMinus = new System.Windows.Forms.Button();
     this.btnPlus = new System.Windows.Forms.Button();
     this.btnPareR = new System.Windows.Forms.Button();
     this.btnPareL = new System.Windows.Forms.Button();
     this.btnExp = new System.Windows.Forms.Button();
     this.btnLog = new System.Windows.Forms.Button();
     this.btnLn = new System.Windows.Forms.Button();
     this.btnOCT = new System.Windows.Forms.Button();
     this.btnTanh = new System.Windows.Forms.Button();
     this.btnCosh = new System.Windows.Forms.Button();
     this.btnSinh = new System.Windows.Forms.Button();
     this.btnAtan = new System.Windows.Forms.Button();
     this.btnAcos = new System.Windows.Forms.Button();
     this.btnAsin = new System.Windows.Forms.Button();
     this.btnTan = new System.Windows.Forms.Button();
     this.btnCos = new System.Windows.Forms.Button();
     this.btnSin = new System.Windows.Forms.Button();
     this.btnDu = new System.Windows.Forms.Button();
     this.btnToO = new System.Windows.Forms.Button();
     this.btnA = new System.Windows.Forms.Button();
     this.btnDms = new System.Windows.Forms.Button();
     this.btn_E = new System.Windows.Forms.Button();
     this.btnS = new System.Windows.Forms.Button();
     this.btnAverage = new System.Windows.Forms.Button();
     this.btnF = new System.Windows.Forms.Button();
     this.btnToDegree = new System.Windows.Forms.Button();
     this.btnD = new System.Windows.Forms.Button();
     this.btn0 = new System.Windows.Forms.Button();
     this.btn3 = new System.Windows.Forms.Button();
     this.btn2 = new System.Windows.Forms.Button();
     this.btn1 = new System.Windows.Forms.Button();
     this.btn6 = new System.Windows.Forms.Button();
     this.btn5 = new System.Windows.Forms.Button();
     this.btn4 = new System.Windows.Forms.Button();
     this.btn9 = new System.Windows.Forms.Button();
     this.btn8 = new System.Windows.Forms.Button();
     this.btn7 = new System.Windows.Forms.Button();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.帮助ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.帮助ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
//.........这里部分代码省略.........
开发者ID:0611163,项目名称:ScientificCalculator,代码行数:101,代码来源:Form1.designer.cs


示例6: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label dESCRIPCIONLabel;
     System.Windows.Forms.Label nOMBRELabel;
     System.Windows.Forms.Label label40;
     System.Windows.Forms.Label label41;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Especies_Form));
     this.pn_listado = new System.Windows.Forms.Panel();
     this.ListadoEspecies = new System.Windows.Forms.DataGridView();
     this.nOMCOMUNDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cODESPDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nOMCIENTIFICODataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gRUPOCOMDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.grupoComercialBSource = new System.Windows.Forms.BindingSource(this.components);
     this.GRUPOECOLOGICO = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fAMILIADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.zONAGEOGRAFICADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.zONADEVIDADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Editar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Eliminar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Detalle = new System.Windows.Forms.DataGridViewButtonColumn();
     this.specieBSource = new System.Windows.Forms.BindingSource(this.components);
     this.paginacionEspecie = new System.Windows.Forms.BindingNavigator(this.components);
     this.cargarArchivo = new System.Windows.Forms.ToolStripButton();
     this.Btn_nuevaEspecie = new System.Windows.Forms.ToolStripButton();
     this.buscarLbl = new System.Windows.Forms.ToolStripLabel();
     this.busquedaTxt = new System.Windows.Forms.ToolStripTextBox();
     this.filtrarLbl = new System.Windows.Forms.ToolStripLabel();
     this.criterioCbx = new System.Windows.Forms.ToolStripComboBox();
     this.GroupComBSource = new System.Windows.Forms.BindingSource(this.components);
     this.groupBox = new System.Windows.Forms.GroupBox();
     this.button1 = new System.Windows.Forms.Button();
     this.cbx_GroupCom = new System.Windows.Forms.ComboBox();
     this.Btn_Guardar = new System.Windows.Forms.Button();
     this.txt_DimCorte = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txt_ZonaGeo = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.txt_NomCient = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.txt_NomCom = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.button2 = new System.Windows.Forms.Button();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.button3 = new System.Windows.Forms.Button();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.textBox4 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.textBox5 = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.textBox7 = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.pn_crear = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.grupoEcoCbx = new System.Windows.Forms.ComboBox();
     this.label42 = new System.Windows.Forms.Label();
     this.btn_crearImg = new System.Windows.Forms.Button();
     this.cbox_GrupoComercial = new System.Windows.Forms.ComboBox();
     this.btn_Cancelar = new System.Windows.Forms.Button();
     this.Btn_Crear = new System.Windows.Forms.Button();
     this.txt_ZonaVida = new System.Windows.Forms.TextBox();
     this.txt_ZonaGeografica = new System.Windows.Forms.TextBox();
     this.txt_Familia = new System.Windows.Forms.TextBox();
     this.txt_NombreCientifico = new System.Windows.Forms.TextBox();
     this.txt_NombreComun = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.pn_editar = new System.Windows.Forms.Panel();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.UpdateImageBN = new System.Windows.Forms.BindingNavigator(this.components);
     this.imagenesBS = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigatorCountItem1 = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem1 = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem1 = new System.Windows.Forms.ToolStripButton();
//.........这里部分代码省略.........
开发者ID:victacora,项目名称:sifca,代码行数:101,代码来源:Especies_Form.designer.cs


示例7: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.txtIdAlicuotaALI = new System.Windows.Forms.TextBox();
     this.txtPorcentajeALI = new System.Windows.Forms.TextBox();
     this.gvwDatos = new System.Windows.Forms.DataGridView();
     this.grpBotones = new System.Windows.Forms.GroupBox();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.btnSalir = new System.Windows.Forms.Button();
     this.btnGrabar = new System.Windows.Forms.Button();
     this.btnBorrar = new System.Windows.Forms.Button();
     this.btnEditar = new System.Windows.Forms.Button();
     this.btnNuevo = new System.Windows.Forms.Button();
     this.grpCampos = new System.Windows.Forms.GroupBox();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.gvwDatos)).BeginInit();
     this.grpBotones.SuspendLayout();
     this.grpCampos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label2.Location = new System.Drawing.Point(8, 42);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(66, 15);
     this.label2.TabIndex = 22;
     this.label2.Text = "Porcentaje";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label1.Location = new System.Drawing.Point(8, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(19, 15);
     this.label1.TabIndex = 21;
     this.label1.Text = "ID";
     //
     // txtIdAlicuotaALI
     //
     this.txtIdAlicuotaALI.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.txtIdAlicuotaALI.Location = new System.Drawing.Point(104, 16);
     this.txtIdAlicuotaALI.Name = "txtIdAlicuotaALI";
     this.txtIdAlicuotaALI.ReadOnly = true;
     this.txtIdAlicuotaALI.Size = new System.Drawing.Size(147, 20);
     this.txtIdAlicuotaALI.TabIndex = 0;
     //
     // txtPorcentajeALI
     //
     this.txtPorcentajeALI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtPorcentajeALI.Location = new System.Drawing.Point(104, 42);
     this.txtPorcentajeALI.Name = "txtPorcentajeALI";
     this.txtPorcentajeALI.Size = new System.Drawing.Size(147, 20);
     this.txtPorcentajeALI.TabIndex = 1;
     //
     // gvwDatos
     //
     this.gvwDatos.AllowUserToAddRows = false;
     this.gvwDatos.AllowUserToDeleteRows = false;
     this.gvwDatos.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.gvwDatos.Location = new System.Drawing.Point(12, 16);
     this.gvwDatos.Name = "gvwDatos";
     this.gvwDatos.ReadOnly = true;
     this.gvwDatos.Size = new System.Drawing.Size(270, 241);
     this.gvwDatos.TabIndex = 18;
     this.gvwDatos.TabStop = false;
     this.gvwDatos.Text = "DataGridView1";
     //
     // grpBotones
     //
     this.grpBotones.Controls.Add(this.btnCancelar);
     this.grpBotones.Controls.Add(this.btnSalir);
     this.grpBotones.Controls.Add(this.btnGrabar);
     this.grpBotones.Controls.Add(this.btnBorrar);
     this.grpBotones.Controls.Add(this.btnEditar);
//.........这里部分代码省略.........
开发者ID:BenjaOtero,项目名称:trend-pos-factura,代码行数:101,代码来源:frmAlicuotasIva.designer.cs


示例8: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label productCodeLabel;
     System.Windows.Forms.Label nameLabel;
     System.Windows.Forms.Label versionLabel;
     System.Windows.Forms.Label releaseDateLabel1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProductIncidents));
     this.productsBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
     this.productsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.techSupportDataSet2C = new SportsPro.TechSupportDataSet2C();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.productCodeTextBox = new System.Windows.Forms.TextBox();
     this.nameTextBox = new System.Windows.Forms.TextBox();
     this.versionTextBox = new System.Windows.Forms.TextBox();
     this.releaseDateTextBox = new System.Windows.Forms.TextBox();
     this.incidentsDataGridView = new System.Windows.Forms.DataGridView();
     this.incidentsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.productsTableAdapter = new SportsPro.TechSupportDataSet2CTableAdapters.ProductsTableAdapter();
     this.tableAdapterManager = new SportsPro.TechSupportDataSet2CTableAdapters.TableAdapterManager();
     this.incidentsTableAdapter = new SportsPro.TechSupportDataSet2CTableAdapters.IncidentsTableAdapter();
     this.CustomerID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DateOpened = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DateClosed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Title = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TechnicianName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CustomerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DisplayCustomerInfo = new System.Windows.Forms.DataGridViewButtonColumn();
     productCodeLabel = new System.Windows.Forms.Label();
     nameLabel = new System.Windows.Forms.Label();
     versionLabel = new System.Windows.Forms.Label();
     releaseDateLabel1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingNavigator)).BeginInit();
     this.productsBindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.techSupportDataSet2C)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsDataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // productCodeLabel
     //
     productCodeLabel.AutoSize = true;
     productCodeLabel.Location = new System.Drawing.Point(9, 35);
     productCodeLabel.Name = "productCodeLabel";
     productCodeLabel.Size = new System.Drawing.Size(75, 13);
     productCodeLabel.TabIndex = 1;
     productCodeLabel.Text = "Product Code:";
     //
     // nameLabel
     //
     nameLabel.AutoSize = true;
     nameLabel.Location = new System.Drawing.Point(9, 61);
     nameLabel.Name = "nameLabel";
     nameLabel.Size = new System.Drawing.Size(38, 13);
     nameLabel.TabIndex = 3;
     nameLabel.Text = "Name:";
     //
     // versionLabel
     //
     versionLabel.AutoSize = true;
     versionLabel.Location = new System.Drawing.Point(9, 87);
     versionLabel.Name = "versionLabel";
     versionLabel.Size = new System.Drawing.Size(45, 13);
     versionLabel.TabIndex = 5;
     versionLabel.Text = "Version:";
     //
     // releaseDateLabel1
     //
     releaseDateLabel1.AutoSize = true;
     releaseDateLabel1.Location = new System.Drawing.Point(9, 113);
     releaseDateLabel1.Name = "releaseDateLabel1";
     releaseDateLabel1.Size = new System.Drawing.Size(75, 13);
     releaseDateLabel1.TabIndex = 9;
     releaseDateLabel1.Text = "Release Date:";
     //
     // productsBindingNavigator
     //
     this.productsBindingNavigator.AddNewItem = null;
     this.productsBindingNavigator.BindingSource = this.productsBindingSource;
     this.productsBindingNavigator.CountItem = this.bindingNavigatorCountItem;
     this.productsBindingNavigator.DeleteItem = null;
     this.productsBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
//.........这里部分代码省略.........
开发者ID:anneilb,项目名称:ce-dev,代码行数:101,代码来源:frmProductIncidents.designer.cs


示例9: InitializeComponent

 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.labelItemShuoMing = new System.Windows.Forms.Label();
     this.panelBigXY = new System.Windows.Forms.Panel();
     this.buttonBigXYBig = new System.Windows.Forms.Button();
     this.buttonBigXYQuit = new System.Windows.Forms.Button();
     this.pictureBoxBigXY = new System.Windows.Forms.PictureBox();
     this.MenuRightClick = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripTextBoxX = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripTextBoxY = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.网格显示ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.放大选取框功能ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.坐标自动调整ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.默认坐标范围ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.slide = new NationalInstruments.UI.WindowsForms.Slide();
     this.panel_itemsIN = new System.Windows.Forms.FlowLayoutPanel();
     this.BTN_切换Y轴 = new System.Windows.Forms.Button();
     this.BTN_停止显示 = new System.Windows.Forms.Button();
     this.buttonReXY = new System.Windows.Forms.Button();
     this.buttonModeXY = new System.Windows.Forms.Button();
     this.buttonBigModeXY = new System.Windows.Forms.Button();
     this.buttonLinesShowXY = new System.Windows.Forms.Button();
     this.btn_调整坐标轴 = new System.Windows.Forms.Button();
     this.legend1 = new NationalInstruments.UI.WindowsForms.Legend();
     this.xAxis_Looking = new NationalInstruments.UI.XAxis();
     this.Graph_View = new NationalInstruments.UI.WindowsForms.ScatterGraph();
     this.xyCursorB = new NationalInstruments.UI.XYCursor();
     this.scatterPlot2 = new NationalInstruments.UI.ScatterPlot();
     this.yAxis1 = new NationalInstruments.UI.YAxis();
     this.xyCursorE = new NationalInstruments.UI.XYCursor();
     this.panel_text = new System.Windows.Forms.Panel();
     this.panelBigXY.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBigXY)).BeginInit();
     this.MenuRightClick.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.slide)).BeginInit();
     this.panel_itemsIN.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.legend1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Graph_View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xyCursorB)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xyCursorE)).BeginInit();
     this.SuspendLayout();
     //
     // labelItemShuoMing
     //
     this.labelItemShuoMing.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelItemShuoMing.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.labelItemShuoMing.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelItemShuoMing.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.labelItemShuoMing.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelItemShuoMing.ForeColor = System.Drawing.Color.White;
     this.labelItemShuoMing.Location = new System.Drawing.Point(868, 518);
     this.labelItemShuoMing.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.labelItemShuoMing.Name = "labelItemShuoMing";
     this.labelItemShuoMing.Size = new System.Drawing.Size(149, 47);
     this.labelItemShuoMing.TabIndex = 10;
     this.labelItemShuoMing.Text = "说明";
     this.labelItemShuoMing.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelItemShuoMing.Visible = false;
     //
     // panelBigXY
     //
     this.panelBigXY.BackColor = System.Drawing.Color.Transparent;
     this.panelBigXY.Controls.Add(this.buttonBigXYBig);
     this.panelBigXY.Controls.Add(this.buttonBigXYQuit);
     this.panelBigXY.Location = new System.Drawing.Point(650, 327);
     this.panelBigXY.Margin = new System.Windows.Forms.Padding(4);
     this.panelBigXY.Name = "panelBigXY";
     this.panelBigXY.Size = new System.Drawing.Size(171, 48);
     this.panelBigXY.TabIndex = 16;
     this.panelBigXY.Visible = false;
     //
     // buttonBigXYBig
     //
     this.buttonBigXYBig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonBigXYBig.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.buttonBigXYBig.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonBigXYBig.ForeColor = System.Drawing.Color.Black;
     this.buttonBigXYBig.Location = new System.Drawing.Point(32, 14);
     this.buttonBigXYBig.Margin = new System.Windows.Forms.Padding(0);
     this.buttonBigXYBig.Name = "buttonBigXYBig";
     this.buttonBigXYBig.Size = new System.Drawing.Size(70, 34);
     this.buttonBigXYBig.TabIndex = 13;
     this.buttonBigXYBig.TabStop = false;
     this.buttonBigXYBig.Text = "放大";
     this.buttonBigXYBig.UseVisualStyleBackColor = false;
     this.buttonBigXYBig.Click += new System.EventHandler(this.buttonBigXYBig_Click);
     //
     // buttonBigXYQuit
     //
     this.buttonBigXYQuit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonBigXYQuit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.buttonBigXYQuit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonBigXYQuit.ForeColor = System.Drawing.Color.Black;
     this.buttonBigXYQuit.Location = new System.Drawing.Point(104, 14);
//.........这里部分代码省略.........
开发者ID:jyorin,项目名称:yinghe,代码行数:101,代码来源:XYGraph.designer.cs


示例10: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCategory));
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.categoryBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.newDataSet = new PEIMSV3Cs.NewDataSet();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.Panel1 = new System.Windows.Forms.Panel();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.SaveButton = new System.Windows.Forms.Button();
     this.SearchIDButton = new System.Windows.Forms.Button();
     this.ExitButton = new System.Windows.Forms.Button();
     this.UpdateButton = new System.Windows.Forms.Button();
     this.DeleteButton = new System.Windows.Forms.Button();
     this.AddButton = new System.Windows.Forms.Button();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.listBox1 = new System.Windows.Forms.ListBox();
     this.categoryIDLabel = new System.Windows.Forms.Label();
     this.categoryIDTextBox = new System.Windows.Forms.TextBox();
     this.categoryNameLabel = new System.Windows.Forms.Label();
     this.categoryNameTextBox = new System.Windows.Forms.TextBox();
     this.categoryDescriptionLabel = new System.Windows.Forms.Label();
     this.categoryDescriptionTextBox = new System.Windows.Forms.TextBox();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.categoryDataGridView = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel3 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.panel5 = new System.Windows.Forms.Panel();
     this.panel6 = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.categoryBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.newDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.Panel1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.categoryDataGridView)).BeginInit();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.BindingSource = this.categoryBindingSource;
     this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = this.bindingNavigatorDeleteItem;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem,
     this.toolStripButton1});
     this.bindingNavigator1.Location = new System.Drawing.Point(0, 0);
     this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.Padding = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.bindingNavigator1.Size = new System.Drawing.Size(612, 25);
     this.bindingNavigator1.TabIndex = 0;
     this.bindingNavigator1.Text = "bindingNavigator1";
     //
     // categoryBindingSource
     //
     this.categoryBindingSource.DataMember = "category";
     this.categoryBindingSource.DataSource = this.newDataSet;
     //
//.........这里部分代码省略.........
开发者ID:votrongdao,项目名称:PEIMS,代码行数:101,代码来源:frmCategory.designer.cs


示例11: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dgvStatementHeadData = new System.Windows.Forms.DataGridView();
     this.dgvStatementDetailData =  

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Forms.ToolTip类代码示例发布时间:2022-05-24
下一篇:
C# Forms.ToolStripStatusLabel类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap