当前位置: 首页>>代码示例>>C#>>正文


C# Forms.ToolStripTextBox类代码示例

本文整理汇总了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类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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 = new System.Windows.Forms.DataGridView();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.txtSearchSaleId = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.txtSearchCustomer = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btnShowAll = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.btnprtInvoice = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.btnCancle = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatementHeadData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatementDetailData)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // dgvStatementHeadData
     //
     this.dgvStatementHeadData.AllowUserToAddRows = false;
     this.dgvStatementHeadData.AllowUserToDeleteRows = false;
     this.dgvStatementHeadData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.tableLayoutPanel1.SetColumnSpan(this.dgvStatementHeadData, 2);
     this.dgvStatementHeadData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvStatementHeadData.Location = new System.Drawing.Point(3, 43);
     this.dgvStatementHeadData.Name = "dgvStatementHeadData";
     this.dgvStatementHeadData.ReadOnly = true;
     this.dgvStatementHeadData.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvStatementHeadData.Size = new System.Drawing.Size(929, 264);
     this.dgvStatementHeadData.TabIndex = 86;
     this.dgvStatementHeadData.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvStatementHeadData_CellMouseUp);
     //
     // dgvStatementDetailData
     //
     this.dgvStatementDetailData.AllowUserToAddRows = false;
     this.dgvStatementDetailData.AllowUserToDeleteRows = false;
     this.dgvStatementDetailData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.tableLayoutPanel1.SetColumnSpan(this.dgvStatementDetailData, 2);
     this.dgvStatementDetailData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvStatementDetailData.Location = new System.Drawing.Point(3, 313);
     this.dgvStatementDetailData.Name = "dgvStatementDetailData";
     this.dgvStatementDetailData.ReadOnly = true;
     this.dgvStatementDetailData.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvStatementDetailData.Size = new System.Drawing.Size(929, 264);
     this.dgvStatementDetailData.TabIndex = 87;
     //
     // toolStrip1
     //
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.txtSearchSaleId,
     this.toolStripSeparator1,
     this.toolStripLabel2,
     this.txtSearchCustomer,
     this.toolStripSeparator2,
     this.toolStripSeparator3,
     this.btnShowAll,
     this.toolStripSeparator4,
     this.btnprtInvoice,
     this.toolStripSeparator5,
     this.btnCancle,
     this.toolStripSeparator6});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.toolStrip1.Size = new System.Drawing.Size(935, 25);
     this.toolStrip1.TabIndex = 91;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(106, 22);
     this.toolStripLabel1.Text = "ค้นหา :เลขที่การขาย : ";
     //
     // txtSearchSaleId
     //
     this.txtSearchSaleId.Name = "txtSearchSaleId";
     this.txtSearchSaleId.Size = new System.Drawing.Size(200, 25);
     this.txtSearchSaleId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearchSaleId_KeyDown);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel2
//.........这里部分代码省略.........
开发者ID:itktc,项目名称:projectktc-v2,代码行数:101,代码来源:frmShowStatement.designer.cs

示例12: 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(OrderForm));
     this.ux_labelOrderDate = new System.Windows.Forms.Label();
     this.ux_labelOriginalOrderRequestID = new System.Windows.Forms.Label();
     this.ux_textboxOriginalOrderRequestID = new System.Windows.Forms.TextBox();
     this.ux_labelLocalNumber = new System.Windows.Forms.Label();
     this.ux_textboxLocalNumber = new System.Windows.Forms.TextBox();
     this.ux_groupbox1 = new System.Windows.Forms.GroupBox();
     this.ux_labelSpecialInstructions = new System.Windows.Forms.Label();
     this.ux_labelSource = new System.Windows.Forms.Label();
     this.ux_textboxSpecialInstructions = new System.Windows.Forms.TextBox();
     this.ux_labelNote = new System.Windows.Forms.Label();
     this.ux_textboxActedDate = new System.Windows.Forms.TextBox();
     this.ux_textboxSource = new System.Windows.Forms.TextBox();
     this.ux_textboxNote = new System.Windows.Forms.TextBox();
     this.ux_labelShipTo = new System.Windows.Forms.Label();
     this.ux_textboxOrderedDate = new System.Windows.Forms.TextBox();
     this.ux_textboxShipTo = new System.Windows.Forms.TextBox();
     this.ux_textboxOrderObtainedVia = new System.Windows.Forms.TextBox();
     this.ux_textboxFinalDestination = new System.Windows.Forms.TextBox();
     this.ux_labelOrderObtainedVia = new System.Windows.Forms.Label();
     this.ux_labelRequestor = new System.Windows.Forms.Label();
     this.ux_checkboxIsSupplyLow = new System.Windows.Forms.CheckBox();
     this.ux_labelFinalDestination = new System.Windows.Forms.Label();
     this.ux_checkboxIsCompleted = new System.Windows.Forms.CheckBox();
     this.ux_textboxRequestor = new System.Windows.Forms.TextBox();
     this.ux_comboboxStatus = new System.Windows.Forms.ComboBox();
     this.ux_labelStatus = new System.Windows.Forms.Label();
     this.ux_comboboxOrderType = new System.Windows.Forms.ComboBox();
     this.ux_labelActedDate = new System.Windows.Forms.Label();
     this.ux_labelOrderType = new System.Windows.Forms.Label();
     this.ux_bindingnavigatorForm = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     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.ux_labelOrderRequestID = new System.Windows.Forms.Label();
     this.ux_textboxOrderRequestID = new System.Windows.Forms.TextBox();
     this.ux_textboxItems = new System.Windows.Forms.TextBox();
     this.ux_labelItems = new System.Windows.Forms.Label();
     this.ux_groupbox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ux_bindingnavigatorForm)).BeginInit();
     this.ux_bindingnavigatorForm.SuspendLayout();
     this.SuspendLayout();
     //
     // ux_labelOrderDate
     //
     this.ux_labelOrderDate.AutoSize = true;
     this.ux_labelOrderDate.Location = new System.Drawing.Point(6, 10);
     this.ux_labelOrderDate.Name = "ux_labelOrderDate";
     this.ux_labelOrderDate.Size = new System.Drawing.Size(59, 13);
     this.ux_labelOrderDate.TabIndex = 1;
     this.ux_labelOrderDate.Tag = "ordered_date";
     this.ux_labelOrderDate.Text = "Order Date";
     //
     // ux_labelOriginalOrderRequestID
     //
     this.ux_labelOriginalOrderRequestID.AutoSize = true;
     this.ux_labelOriginalOrderRequestID.Location = new System.Drawing.Point(331, 10);
     this.ux_labelOriginalOrderRequestID.Name = "ux_labelOriginalOrderRequestID";
     this.ux_labelOriginalOrderRequestID.Size = new System.Drawing.Size(111, 13);
     this.ux_labelOriginalOrderRequestID.TabIndex = 3;
     this.ux_labelOriginalOrderRequestID.Tag = "original_order_request_id";
     this.ux_labelOriginalOrderRequestID.Text = "Original Order Number";
     //
     // ux_textboxOriginalOrderRequestID
     //
     this.ux_textboxOriginalOrderRequestID.Location = new System.Drawing.Point(334, 26);
     this.ux_textboxOriginalOrderRequestID.Name = "ux_textboxOriginalOrderRequestID";
     this.ux_textboxOriginalOrderRequestID.Size = new System.Drawing.Size(120, 20);
     this.ux_textboxOriginalOrderRequestID.TabIndex = 1;
     this.ux_textboxOriginalOrderRequestID.Tag = "original_order_request_id";
     //
     // ux_labelLocalNumber
     //
     this.ux_labelLocalNumber.AutoSize = true;
     this.ux_labelLocalNumber.Location = new System.Drawing.Point(6, 48);
     this.ux_labelLocalNumber.Name = "ux_labelLocalNumber";
     this.ux_labelLocalNumber.Size = new System.Drawing.Size(73, 13);
     this.ux_labelLocalNumber.TabIndex = 5;
     this.ux_labelLocalNumber.Tag = "local_number";
     this.ux_labelLocalNumber.Text = "Local Number";
     //
     // ux_textboxLocalNumber
     //
     this.ux_textboxLocalNumber.Location = new System.Drawing.Point(6, 63);
     this.ux_textboxLocalNumber.Name = "ux_textboxLocalNumber";
//.........这里部分代码省略.........
开发者ID:egacheru,项目名称:G2,代码行数:101,代码来源:OrderForm.designer.cs

示例13: 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(DataGridBaseView));
     this.bindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.bindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.buttonSave = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     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.dataGridView = new System.Windows.Forms.DataGridView();
     this.buttonCancel = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator)).BeginInit();
     this.bindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // bindingNavigator
     //
     this.bindingNavigator.AddNewItem = this.bindingNavigatorAddNewItem;
     this.bindingNavigator.BindingSource = this.bindingSource;
     this.bindingNavigator.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator.DeleteItem = this.bindingNavigatorDeleteItem;
     this.bindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.buttonSave,
     this.buttonCancel,
     this.toolStripSeparator1,
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem});
     this.bindingNavigator.Location = new System.Drawing.Point(0, 0);
     this.bindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator.Name = "bindingNavigator";
     this.bindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator.Size = new System.Drawing.Size(636, 25);
     this.bindingNavigator.TabIndex = 0;
     this.bindingNavigator.Text = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingSource
     //
     this.bindingSource.ListChanged += new System.ComponentModel.ListChangedEventHandler(this.bindingSource_ListChanged);
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // buttonSave
     //
     this.buttonSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.buttonSave.Image = ((System.Drawing.Image)(resources.GetObject("buttonSave.Image")));
     this.buttonSave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.buttonSave.Name = "buttonSave";
     this.buttonSave.Size = new System.Drawing.Size(23, 22);
     this.buttonSave.Text = "Save";
//.........这里部分代码省略.........
开发者ID:helgihaf,项目名称:Alpha,代码行数:101,代码来源:DataGridBaseView.Designer+-+Copy.cs

示例14: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmXuLyNhapKho));
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatus_Themmoi = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_In = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_Thanhtoan = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_InMaVach = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.palNhap = new System.Windows.Forms.Panel();
     this.label5 = new System.Windows.Forms.Label();
     this.chekChonLoai = new System.Windows.Forms.CheckBox();
     this.lblMaHoaDonNhap = new System.Windows.Forms.Label();
     this.lblTenNhaCungCap = new System.Windows.Forms.Label();
     this.txtTygia = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.cbxTienTe_TyGia = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.btnTimMadatmuahang = new System.Windows.Forms.Button();
     this.txtMadondathang = new System.Windows.Forms.TextBox();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.makHanthanhtoan = new System.Windows.Forms.MaskedTextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.txtnguoigiaohang = new System.Windows.Forms.TextBox();
     this.btnTimnhacungcap = new System.Windows.Forms.Button();
     this.lblDiengiai = new System.Windows.Forms.Label();
     this.txtDiengiai = new System.Windows.Forms.TextBox();
     this.cbxHinhthucthanhtoan = new System.Windows.Forms.ComboBox();
     this.lblHinhthucthanhtoan = new System.Windows.Forms.Label();
     this.cbxKhoHang = new System.Windows.Forms.ComboBox();
     this.lblKhohang = new System.Windows.Forms.Label();
     this.lblNguoigiaohang = new System.Windows.Forms.Label();
     this.txtNohienthoi = new System.Windows.Forms.TextBox();
     this.lblNohienthoi = new System.Windows.Forms.Label();
     this.lblDinhdangngay = new System.Windows.Forms.LinkLabel();
     this.makNgaydonhang = new System.Windows.Forms.MaskedTextBox();
     this.lblNgaydonhang = new System.Windows.Forms.Label();
     this.txtManhacungcap = new System.Windows.Forms.TextBox();
     this.txtSodonhang = new System.Windows.Forms.TextBox();
     this.lblManhacungcap = new System.Windows.Forms.Label();
     this.lblSodonhang = new System.Windows.Forms.Label();
     this.palXem = new System.Windows.Forms.Panel();
     this.txtTienCKTM0 = new System.Windows.Forms.TextBox();
     this.txtCKTM0 = new System.Windows.Forms.TextBox();
     this.lbtinhtrang = new System.Windows.Forms.Label();
     this.txtGiatrigiatang = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.txtTienhang = new System.Windows.Forms.TextBox();
     this.txtChietkhau = new System.Windows.Forms.TextBox();
     this.lblChietkhau_Tienhang = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.txtThanhtoanngay = new System.Windows.Forms.TextBox();
     this.txtTienCKTM = new System.Windows.Forms.TextBox();
     this.lblPhantram = new System.Windows.Forms.LinkLabel();
     this.txtCKTM = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtTienTraLai = new System.Windows.Forms.TextBox();
     this.lblTongtien = new System.Windows.Forms.Label();
     this.txtTongThanhToan = new System.Windows.Forms.TextBox();
     this.lblPhivanchuyen_Phikhac = new System.Windows.Forms.Label();
     this.grbDataGridview = new System.Windows.Forms.GroupBox();
     this.dgvInsertOrder = new System.Windows.Forms.DataGridView();
     this.palThem = new System.Windows.Forms.Panel();
     this.toolStrip_Insert = new System.Windows.Forms.ToolStrip();
     this.toolStrip_txtTracuu = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel8 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtTenhang = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtSoluong = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel5 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtGiagoc = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtChietkhauphantram = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtGianhap = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtThuegiatrigiatang = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_Chietkhau = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel7 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtNgayhethan = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_btnThem = new System.Windows.Forms.ToolStripButton();
     this.statusStrip1.SuspendLayout();
     this.palNhap.SuspendLayout();
     this.palXem.SuspendLayout();
     this.grbDataGridview.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvInsertOrder)).BeginInit();
     this.palThem.SuspendLayout();
     this.toolStrip_Insert.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.BackColor = System.Drawing.Color.LightSteelBlue;
     this.statusStrip1.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
//.........这里部分代码省略.........
开发者ID:mrk29vn,项目名称:vna-accounting,代码行数:101,代码来源:frmXuLyNhapKho.designer.cs

示例15: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HttpHeaders));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.getHeadersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.urlTextBox = new System.Windows.Forms.ToolStripTextBox();
     this.HTTPHeaderslistView = new System.Windows.Forms.ListView();
     this.HTTPHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.HTTPValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.getHeadersToolStripMenuItem,
     this.urlTextBox});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(326, 27);
     this.menuStrip1.TabIndex = 2;
     this.menuStrip1.Text = "menuStrip1";
     //
     // getHeadersToolStripMenuItem
     //
     this.getHeadersToolStripMenuItem.Name = "getHeadersToolStripMenuItem";
     this.getHeadersToolStripMenuItem.Size = new System.Drawing.Size(83, 23);
     this.getHeadersToolStripMenuItem.Text = "Get Headers";
     this.getHeadersToolStripMenuItem.Click += new System.EventHandler(this.getHeadersToolStripMenuItem_Click);
     //
     // urlTextBox
     //
     this.urlTextBox.Name = "urlTextBox";
     this.urlTextBox.Size = new System.Drawing.Size(200, 23);
     //
     // HTTPHeaderslistView
     //
     this.HTTPHeaderslistView.Activation = System.Windows.Forms.ItemActivation.OneClick;
     this.HTTPHeaderslistView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.HTTPHeader,
     this.HTTPValue});
     this.HTTPHeaderslistView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.HTTPHeaderslistView.FullRowSelect = true;
     this.HTTPHeaderslistView.Location = new System.Drawing.Point(0, 27);
     this.HTTPHeaderslistView.Name = "HTTPHeaderslistView";
     this.HTTPHeaderslistView.Size = new System.Drawing.Size(326, 307);
     this.HTTPHeaderslistView.TabIndex = 3;
     this.HTTPHeaderslistView.UseCompatibleStateImageBehavior = false;
     this.HTTPHeaderslistView.View = System.Windows.Forms.View.Details;
     //
     // HTTPHeader
     //
     this.HTTPHeader.Text = "Header";
     this.HTTPHeader.Width = 123;
     //
     // HTTPValue
     //
     this.HTTPValue.Text = "Value";
     this.HTTPValue.Width = 197;
     //
     // HttpHeaders
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(326, 334);
     this.Controls.Add(this.HTTPHeaderslistView);
     this.Controls.Add(this.menuStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "HttpHeaders";
     this.Text = "Get HTTP Headers";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:goodww1,项目名称:wnmp,代码行数:80,代码来源:HttpHeaders.designer.cs


注:本文中的System.Windows.Forms.ToolStripTextBox类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。