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

C# Forms.SplitContainer类代码示例

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

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



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

示例1: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
       this.listBox1 = new System.Windows.Forms.ListBox();
       this.tv = new System.Windows.Forms.TreeView();
       this.splitContainer1.Panel1.SuspendLayout();
       this.splitContainer1.Panel2.SuspendLayout();
       this.splitContainer1.SuspendLayout();
       this.SuspendLayout();
       //
       // splitContainer1
       //
       this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
       this.splitContainer1.Location = new System.Drawing.Point( 0, 0 );
       this.splitContainer1.Name = "splitContainer1";
       //
       // splitContainer1.Panel1
       //
       this.splitContainer1.Panel1.Controls.Add( this.listBox1 );
       //
       // splitContainer1.Panel2
       //
       this.splitContainer1.Panel2.Controls.Add( this.tv );
       this.splitContainer1.Size = new System.Drawing.Size( 459, 556 );
       this.splitContainer1.SplitterDistance = 153;
       this.splitContainer1.TabIndex = 0;
       //
       // listBox1
       //
       this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
       this.listBox1.FormattingEnabled = true;
       this.listBox1.Location = new System.Drawing.Point( 0, 0 );
       this.listBox1.Name = "listBox1";
       this.listBox1.Size = new System.Drawing.Size( 153, 550 );
       this.listBox1.Sorted = true;
       this.listBox1.TabIndex = 0;
       this.listBox1.SelectedIndexChanged += new System.EventHandler( this.listBox1_SelectedIndexChanged );
       //
       // tv
       //
       this.tv.Dock = System.Windows.Forms.DockStyle.Fill;
       this.tv.Location = new System.Drawing.Point( 0, 0 );
       this.tv.Name = "tv";
       this.tv.Size = new System.Drawing.Size( 302, 556 );
       this.tv.TabIndex = 0;
       //
       // CmdInspectElectricalForm2
       //
       this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F );
       this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
       this.ClientSize = new System.Drawing.Size( 459, 556 );
       this.Controls.Add( this.splitContainer1 );
       this.Name = "CmdInspectElectricalForm2";
       this.Text = "Electrical System Inspector";
       this.splitContainer1.Panel1.ResumeLayout( false );
       this.splitContainer1.Panel2.ResumeLayout( false );
       this.splitContainer1.ResumeLayout( false );
       this.ResumeLayout( false );
 }
开发者ID:jeremytammik,项目名称:AdnRme,代码行数:63,代码来源:CmdInspectElectricallForm2.designer.cs


示例2: InitializeComponent

		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent() {
			System.Windows.Forms.SplitContainer splitContainer1;
			this._commandList = new System.Windows.Forms.ListBox();
			this._propertyGrid = new System.Windows.Forms.PropertyGrid();
			splitContainer1 = new System.Windows.Forms.SplitContainer();
			splitContainer1.Panel1.SuspendLayout();
			splitContainer1.Panel2.SuspendLayout();
			splitContainer1.SuspendLayout();
			this.SuspendLayout();
			// 
			// splitContainer1
			// 
			splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
			splitContainer1.Location = new System.Drawing.Point(0, 0);
			splitContainer1.Name = "splitContainer1";
			splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
			// 
			// splitContainer1.Panel1
			// 
			splitContainer1.Panel1.Controls.Add(this._commandList);
			// 
			// splitContainer1.Panel2
			// 
			splitContainer1.Panel2.Controls.Add(this._propertyGrid);
			splitContainer1.Size = new System.Drawing.Size(288, 460);
			splitContainer1.SplitterDistance = 269;
			splitContainer1.TabIndex = 1;
			// 
			// _commandList
			// 
			this._commandList.Dock = System.Windows.Forms.DockStyle.Fill;
			this._commandList.FormattingEnabled = true;
			this._commandList.Location = new System.Drawing.Point(0, 0);
			this._commandList.Name = "_commandList";
			this._commandList.Size = new System.Drawing.Size(288, 264);
			this._commandList.TabIndex = 0;
			this._commandList.SelectedIndexChanged += new System.EventHandler(this.commandList_SelectedIndexChanged);
			// 
			// _propertyGrid
			// 
			this._propertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
			this._propertyGrid.Location = new System.Drawing.Point(0, 0);
			this._propertyGrid.Name = "_propertyGrid";
			this._propertyGrid.Size = new System.Drawing.Size(288, 187);
			this._propertyGrid.TabIndex = 2;
			// 
			// CommandHistoryComponentPanel
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(splitContainer1);
			this.Name = "CommandHistoryComponentPanel";
			this.Size = new System.Drawing.Size(288, 460);
			splitContainer1.Panel1.ResumeLayout(false);
			splitContainer1.Panel2.ResumeLayout(false);
			splitContainer1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
开发者ID:fparisotto,项目名称:ClearCanvas-Contrib,代码行数:63,代码来源:CommandHistoryComponentPanel.Designer.cs


示例3: Animation

 public Animation(System.Windows.Forms.SplitContainer sC)
 {
     splCtn = sC;
     graph = splCtn.CreateGraphics();
     red = new SolidBrush(Color.Red);
     black = new SolidBrush(Color.Black);
     sprite = new Rectangle(255, -50, 5, 50);
 }
开发者ID:jaworekplayt,项目名称:HCIApp,代码行数:8,代码来源:Animation.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.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.panel = new System.Windows.Forms.Panel();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.treeView1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.panel);
     this.splitContainer1.Size = new System.Drawing.Size(635, 342);
     this.splitContainer1.SplitterDistance = 211;
     this.splitContainer1.TabIndex = 0;
     //
     // treeView1
     //
     this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.Location = new System.Drawing.Point(0, 0);
     this.treeView1.Name = "treeView1";
     this.treeView1.Size = new System.Drawing.Size(211, 342);
     this.treeView1.TabIndex = 0;
     this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
     //
     // panel
     //
     this.panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel.Location = new System.Drawing.Point(0, 0);
     this.panel.Name = "panel";
     this.panel.Size = new System.Drawing.Size(420, 342);
     this.panel.TabIndex = 0;
     //
     // FormOptionPage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(635, 342);
     this.Controls.Add(this.splitContainer1);
     this.Name = "FormOptionPage";
     this.Text = "FormOptionPage";
     this.Load += new System.EventHandler(this.FormOptionPage_Load);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
开发者ID:sunpander,项目名称:VSDT,代码行数:62,代码来源:FormOptionPage.designer.cs


示例5: SplittedView

        public SplittedView(ItemTemplate p, View v)
        {
            var editor = EditorBuilder.Build(p.Extension, null, null, null);
            editor.Text = new StreamReader(new MemoryStream(Data)).ReadToEnd();

            v.Data = Data;
            var first = v.GetView();
            first.Dock = System.Windows.Forms.DockStyle.Fill;

            var c = new System.Windows.Forms.SplitContainer();
            c.Panel1.Controls.Add(first);
            c.Panel2.Controls.Add(editor);
        }
开发者ID:MyvarHD,项目名称:OpenIDE,代码行数:13,代码来源:SplittedView.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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.faTabStrip1 = new System.Windows.Forms.TabControl();
     this.faTabStripItemInfo = new System.Windows.Forms.TabPage();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.faTabStripItemSend = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.cmdClearSend = new System.Windows.Forms.Button();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.lblStatus = new System.Windows.Forms.Label();
     this.cmdSend = new System.Windows.Forms.Button();
     this.lblTeleLength = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label7 = new System.Windows.Forms.Label();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.panel4 = new System.Windows.Forms.Panel();
     this.lblLenEmpf = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.lstStoredSenddata = new System.Windows.Forms.ListBox();
     this.panel3 = new System.Windows.Forms.Panel();
     this.cmdRemoveSendeTele = new System.Windows.Forms.Button();
     this.cmdAddSendeTele = new System.Windows.Forms.Button();
     this.dtaSendTabelle = new System.Windows.Forms.DataGridView();
     this.Bezeichnung = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Laenge = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Wert = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.dtaSendSendTable = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtaSendQuittTable = new System.Windows.Forms.DataGridView();
     this.colSendQuittText = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.faTabStripItemRecieve = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.kryptonButton2 = new System.Windows.Forms.Button();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.grdEmpfang = new System.Windows.Forms.DataGridView();
     this.colEmpf = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtaEmpfangstelegrammAufgeschluesselt = new System.Windows.Forms.DataGridView();
     this.colEmpfBezeichnung = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEmpfLaenge = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEmpfWert = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.faTabStripItemSettings = new System.Windows.Forms.TabPage();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.label5 = new System.Windows.Forms.Label();
     this.cmdDelTele = new System.Windows.Forms.Button();
     this.cmdEditQuittFields = new System.Windows.Forms.Button();
     this.lstQuitt = new System.Windows.Forms.ListBox();
     this.chkAutoQuitt = new System.Windows.Forms.CheckBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.numSequenceNumberLength = new System.Windows.Forms.NumericUpDown();
     this.numSequenceNumberPosition = new System.Windows.Forms.NumericUpDown();
     this.label4 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.chkChanel2active = new System.Windows.Forms.CheckBox();
     this.numPort2 = new System.Windows.Forms.NumericUpDown();
     this.numPort1 = new System.Windows.Forms.NumericUpDown();
     this.lblKanal2Port = new System.Windows.Forms.Label();
     this.chkChanel1active = new System.Windows.Forms.CheckBox();
     this.lblKanal2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.optTwoChannel = new System.Windows.Forms.RadioButton();
     this.optOneChannel = new System.Windows.Forms.RadioButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label1 = new System.Windows.Forms.Label();
     this.ipAddressControl = new IPAddressControlLib.IPAddressControl();
     this.cmdSelectStep7UDT = new System.Windows.Forms.Button();
     this.cmdConnect = new System.Windows.Forms.Button();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.cmdSettExport = new System.Windows.Forms.Button();
     this.cmdSettImport = new System.Windows.Forms.Button();
     this.cmdSettingsSave = new System.Windows.Forms.Button();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.picConnection1 = new System.Windows.Forms.PictureBox();
     this.picConnection2 = new System.Windows.Forms.PictureBox();
     this.cmdDisconnect = new System.Windows.Forms.Button();
     this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     this.faTabStrip1.SuspendLayout();
     this.faTabStripItemInfo.SuspendLayout();
     this.faTabStripItemSend.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
//.........这里部分代码省略.........
开发者ID:MaxOLydian,项目名称:s7-diff-merge,代码行数:101,代码来源:MainForm.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.textDocDateDesc = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.checkDiscontinued = new System.Windows.Forms.CheckBox();
     this.pictBox = new System.Windows.Forms.PictureBox();
     this.gridMeds = new OpenDental.UI.ODGrid();
     this.butPickRxListImage = new OpenDental.UI.Button();
     this.butAdd = new OpenDental.UI.Button();
     this.butClose = new OpenDental.UI.Button();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.butAddEvent = new OpenDental.UI.Button();
     this.gridReconcileEvents = new OpenDental.UI.ODGrid();
     this.label2 = new System.Windows.Forms.Label();
     this.butDelete = new OpenDental.UI.Button();
     ((System.ComponentModel.ISupportInitialize)(this.pictBox)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // textDocDateDesc
     //
     this.textDocDateDesc.Enabled = false;
     this.textDocDateDesc.Location = new System.Drawing.Point(101,5);
     this.textDocDateDesc.Name = "textDocDateDesc";
     this.textDocDateDesc.Size = new System.Drawing.Size(272,20);
     this.textDocDateDesc.TabIndex = 71;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(1,9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(94,16);
     this.label1.TabIndex = 73;
     this.label1.Text = "Rx List";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // checkDiscontinued
     //
     this.checkDiscontinued.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.checkDiscontinued.Location = new System.Drawing.Point(609,5);
     this.checkDiscontinued.Name = "checkDiscontinued";
     this.checkDiscontinued.Size = new System.Drawing.Size(212,23);
     this.checkDiscontinued.TabIndex = 70;
     this.checkDiscontinued.Tag = "";
     this.checkDiscontinued.Text = "Show Discontinued Medications";
     this.checkDiscontinued.UseVisualStyleBackColor = true;
     this.checkDiscontinued.KeyUp += new System.Windows.Forms.KeyEventHandler(this.checkDiscontinued_KeyUp);
     this.checkDiscontinued.MouseUp += new System.Windows.Forms.MouseEventHandler(this.checkDiscontinued_MouseUp);
     //
     // pictBox
     //
     this.pictBox.BackColor = System.Drawing.SystemColors.Window;
     this.pictBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.pictBox.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictBox.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictBox.InitialImage = null;
     this.pictBox.Location = new System.Drawing.Point(0,0);
     this.pictBox.Name = "pictBox";
     this.pictBox.Size = new System.Drawing.Size(460,600);
     this.pictBox.TabIndex = 66;
     this.pictBox.TabStop = false;
     //
     // gridMeds
     //
     this.gridMeds.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gridMeds.HScrollVisible = false;
     this.gridMeds.Location = new System.Drawing.Point(0,0);
     this.gridMeds.Name = "gridMeds";
     this.gridMeds.ScrollValue = 0;
     this.gridMeds.Size = new System.Drawing.Size(445,395);
     this.gridMeds.TabIndex = 65;
     this.gridMeds.Title = "Medications";
     this.gridMeds.TranslationName = "TableMedications";
     this.gridMeds.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMeds_CellDoubleClick);
     //
     // butPickRxListImage
     //
     this.butPickRxListImage.AdjustImageLocation = new System.Drawing.Point(0,0);
     this.butPickRxListImage.Autosize = true;
     this.butPickRxListImage.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butPickRxListImage.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butPickRxListImage.CornerRadius = 4F;
     this.butPickRxListImage.Location = new System.Drawing.Point(379,3);
     this.butPickRxListImage.Name = "butPickRxListImage";
     this.butPickRxListImage.Size = new System.Drawing.Size(22,24);
     this.butPickRxListImage.TabIndex = 76;
     this.butPickRxListImage.Text = "...";
     this.butPickRxListImage.Click += new System.EventHandler(this.butPickRxListImage_Click);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0,1);
//.........这里部分代码省略.........
开发者ID:nampn,项目名称:ODental,代码行数:101,代码来源:FormMedicationReconcile.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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WelcomeForm));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.settingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.manageUserToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.changePsswordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.databaseManagementToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createBackupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.restoreBackupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.startNewYearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.initializeDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.registerTrialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.registerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.unRegisterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.userHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.troubleshootingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.systemLogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutEBusinessToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.btnPOS = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
     this.btnInvoice = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnStock = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btnItem = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCustomer = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCompany = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.btnOrder = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.btnShop = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStrip_Reports = new System.Windows.Forms.ToolStrip();
     this.btnSalesReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
     this.btnPurchaseReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.btnDailySalesReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
     this.btnBuyerLedgerReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCustomerTransaction = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCompanyTransaction = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
     this.btnProfitReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCurrentCashReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.btnItemTransaction = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.middlePanel = new System.Windows.Forms.Panel();
     this.lblSologon = new System.Windows.Forms.Label();
     this.lbRegistrationNo = new System.Windows.Forms.Label();
     this.lblPhoneNumber = new System.Windows.Forms.Label();
     this.lblAdress = new System.Windows.Forms.Label();
     this.panelToday = new System.Windows.Forms.Panel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.lvSale = new System.Windows.Forms.ListView();
     this.colSNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colRNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colCustomer = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colTotal = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colPayment = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label2 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.lvPurchase = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label6 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.panelClock = new System.Windows.Forms.Panel();
     this.lvStockSummary = new System.Windows.Forms.ListView();
     this.colItem = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colStock = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colOnOrder = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colLimit = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.btnRefresh = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
//.........这里部分代码省略.........
开发者ID:iMutex,项目名称:EBusiness,代码行数:101,代码来源:WelcomeForm.designer.cs


示例9: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.grupa = new System.Windows.Forms.GroupBox();
     this.bananaSplit = new System.Windows.Forms.SplitContainer();
     this.dgvDok = new System.Windows.Forms.DataGridView();
     this.colDokBr = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dgvLok = new System.Windows.Forms.DataGridView();
     this.pnlVrh = new System.Windows.Forms.Panel();
     this.pnlDokVrsta = new System.Windows.Forms.Panel();
     this.lblSklaOznakaT = new System.Windows.Forms.Label();
     this.lblSklaOznakaV = new System.Windows.Forms.Label();
     this.lblDokVrstaT = new System.Windows.Forms.Label();
     this.lblDokVrstaV = new System.Windows.Forms.Label();
     this.txtDok = new System.Windows.Forms.TextBox();
     this.lblDok = new System.Windows.Forms.Label();
     this.btnDok = new System.Windows.Forms.Button();
     this.pnlDno = new System.Windows.Forms.Panel();
     this.txtPreuzeo = new System.Windows.Forms.TextBox();
     this.btnZaključi = new System.Windows.Forms.Button();
     this.lblPreuzeo = new System.Windows.Forms.Label();
     this.colLokacija = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colZona = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDokument = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.grupa.SuspendLayout();
     this.bananaSplit.Panel1.SuspendLayout();
     this.bananaSplit.Panel2.SuspendLayout();
     this.bananaSplit.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvDok)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvLok)).BeginInit();
     this.pnlVrh.SuspendLayout();
     this.pnlDokVrsta.SuspendLayout();
     this.pnlDno.SuspendLayout();
     this.SuspendLayout();
     //
     // grupa
     //
     this.grupa.Controls.Add(this.bananaSplit);
     this.grupa.Controls.Add(this.pnlVrh);
     this.grupa.Controls.Add(this.pnlDno);
     this.grupa.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grupa.Location = new System.Drawing.Point(0, 25);
     this.grupa.Name = "grupa";
     this.grupa.Size = new System.Drawing.Size(1208, 624);
     this.grupa.TabIndex = 2;
     this.grupa.TabStop = false;
     this.grupa.Text = "Otprema";
     //
     // bananaSplit
     //
     this.bananaSplit.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bananaSplit.Font = new System.Drawing.Font("Tahoma", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.bananaSplit.Location = new System.Drawing.Point(3, 55);
     this.bananaSplit.Name = "bananaSplit";
     //
     // bananaSplit.Panel1
     //
     this.bananaSplit.Panel1.Controls.Add(this.dgvDok);
     this.bananaSplit.Panel1MinSize = 50;
     //
     // bananaSplit.Panel2
     //
     this.bananaSplit.Panel2.Controls.Add(this.dgvLok);
     this.bananaSplit.Panel2MinSize = 50;
     this.bananaSplit.Size = new System.Drawing.Size(1202, 506);
     this.bananaSplit.SplitterDistance = 290;
     this.bananaSplit.TabIndex = 12;
     //
     // dgvDok
     //
     this.dgvDok.AllowUserToAddRows = false;
     this.dgvDok.AllowUserToDeleteRows = false;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvDok.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dgvDok.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvDok.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colDokBr});
     this.dgvDok.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvDok.Location = new System.Drawing.Point(0, 0);
     this.dgvDok.MultiSelect = false;
     this.dgvDok.Name = "dgvDok";
     this.dgvDok.ReadOnly = true;
     this.dgvDok.RowHeadersVisible = false;
     this.dgvDok.RowTemplate.Height = 41;
     this.dgvDok.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvDok.Size = new System.Drawing.Size(290, 506);
     this.dgvDok.TabIndex = 7;
     this.dgvDok.CurrentCellChanged += new System.EventHandler(this.dgvDok_CurrentCellChanged);
     //
//.........这里部分代码省略.........
开发者ID:Brumiko,项目名称:MobTrenisIS,代码行数:101,代码来源:FormOtprema.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.authoPanel = new System.Windows.Forms.SplitContainer();
     this.panel2 = new System.Windows.Forms.Panel();
     this.bg = new System.Windows.Forms.GroupBox();
     this.system = new System.Windows.Forms.Panel();
     this.label13 = new System.Windows.Forms.Label();
     this.bSystem = new System.Windows.Forms.CheckBox();
     this.b52 = new System.Windows.Forms.CheckBox();
     this.b51 = new System.Windows.Forms.CheckBox();
     this.stock = new System.Windows.Forms.Panel();
     this.label12 = new System.Windows.Forms.Label();
     this.b47 = new System.Windows.Forms.CheckBox();
     this.bStock = new System.Windows.Forms.CheckBox();
     this.b48 = new System.Windows.Forms.CheckBox();
     this.b49 = new System.Windows.Forms.CheckBox();
     this.b46 = new System.Windows.Forms.CheckBox();
     this.b45 = new System.Windows.Forms.CheckBox();
     this.b44 = new System.Windows.Forms.CheckBox();
     this.b43 = new System.Windows.Forms.CheckBox();
     this.b42 = new System.Windows.Forms.CheckBox();
     this.b41 = new System.Windows.Forms.CheckBox();
     this.document = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.b36 = new System.Windows.Forms.CheckBox();
     this.bDocument = new System.Windows.Forms.CheckBox();
     this.b37 = new System.Windows.Forms.CheckBox();
     this.b35 = new System.Windows.Forms.CheckBox();
     this.b34 = new System.Windows.Forms.CheckBox();
     this.checkBox12 = new System.Windows.Forms.CheckBox();
     this.b33 = new System.Windows.Forms.CheckBox();
     this.b32 = new System.Windows.Forms.CheckBox();
     this.b31 = new System.Windows.Forms.CheckBox();
     this.card = new System.Windows.Forms.Panel();
     this.label10 = new System.Windows.Forms.Label();
     this.b25 = new System.Windows.Forms.CheckBox();
     this.bMemberM = new System.Windows.Forms.CheckBox();
     this.b26 = new System.Windows.Forms.CheckBox();
     this.b24 = new System.Windows.Forms.CheckBox();
     this.b23 = new System.Windows.Forms.CheckBox();
     this.b22 = new System.Windows.Forms.CheckBox();
     this.b21 = new System.Windows.Forms.CheckBox();
     this.table = new System.Windows.Forms.Panel();
     this.label8 = new System.Windows.Forms.Label();
     this.b17 = new System.Windows.Forms.CheckBox();
     this.bTable = new System.Windows.Forms.CheckBox();
     this.b18 = new System.Windows.Forms.CheckBox();
     this.b19 = new System.Windows.Forms.CheckBox();
     this.checkBox9 = new System.Windows.Forms.CheckBox();
     this.checkBox7 = new System.Windows.Forms.CheckBox();
     this.b16 = new System.Windows.Forms.CheckBox();
     this.b15 = new System.Windows.Forms.CheckBox();
     this.b14 = new System.Windows.Forms.CheckBox();
     this.b20 = new System.Windows.Forms.CheckBox();
     this.b13 = new System.Windows.Forms.CheckBox();
     this.b12 = new System.Windows.Forms.CheckBox();
     this.b11 = new System.Windows.Forms.CheckBox();
     this.label9 = new System.Windows.Forms.Label();
     this.cBack = new System.Windows.Forms.CheckBox();
     this.rp = new System.Windows.Forms.GroupBox();
     this.member = new System.Windows.Forms.Panel();
     this.label7 = new System.Windows.Forms.Label();
     this.checkBox13 = new System.Windows.Forms.CheckBox();
     this.c34 = new System.Windows.Forms.CheckBox();
     this.checkBox20 = new System.Windows.Forms.CheckBox();
     this.c33 = new System.Windows.Forms.CheckBox();
     this.cMember = new System.Windows.Forms.CheckBox();
     this.checkBox6 = new System.Windows.Forms.CheckBox();
     this.c32 = new System.Windows.Forms.CheckBox();
     this.c31 = new System.Windows.Forms.CheckBox();
     this.all = new System.Windows.Forms.Panel();
     this.label6 = new System.Windows.Forms.Label();
     this.checkBox15 = new System.Windows.Forms.CheckBox();
     this.checkBox10 = new System.Windows.Forms.CheckBox();
     this.checkBox16 = new System.Windows.Forms.CheckBox();
     this.checkBox17 = new System.Windows.Forms.CheckBox();
     this.checkBox18 = new System.Windows.Forms.CheckBox();
     this.checkBox21 = new System.Windows.Forms.CheckBox();
     this.checkBox19 = new System.Windows.Forms.CheckBox();
     this.pay = new System.Windows.Forms.Panel();
     this.checkBox14 = new System.Windows.Forms.CheckBox();
     this.label5 = new System.Windows.Forms.Label();
     this.c26 = new System.Windows.Forms.CheckBox();
     this.c25 = new System.Windows.Forms.CheckBox();
     this.cPay = new System.Windows.Forms.CheckBox();
     this.checkBox5 = new System.Windows.Forms.CheckBox();
     this.c22 = new System.Windows.Forms.CheckBox();
     this.c21 = new System.Windows.Forms.CheckBox();
     this.order = new System.Windows.Forms.Panel();
     this.label4 = new System.Windows.Forms.Label();
     this.checkBox4 = new System.Windows.Forms.CheckBox();
     this.checkBox11 = new System.Windows.Forms.CheckBox();
     this.checkBox8 = new System.Windows.Forms.CheckBox();
     this.seat = new System.Windows.Forms.Panel();
     this.label14 = new System.Windows.Forms.Label();
     this.cSeatChange = new System.Windows.Forms.CheckBox();
//.........这里部分代码省略.........
开发者ID:huaminglee,项目名称:yousoftbath,代码行数:101,代码来源:JobForm.designer.cs


示例11: InitializeComponent

 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.mnuFile = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuOpen = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuQuit = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuExtras = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuHeaderInfo = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuWZCompare = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuSaveXML = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuLoadXML = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuExtract = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
     this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
     this.mnuSettings = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuAbout = new System.Windows.Forms.ToolStripMenuItem();
     this.licenseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCloseRender = new System.Windows.Forms.ToolStripMenuItem();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.button8 = new System.Windows.Forms.Button();
     this.button7 = new System.Windows.Forms.Button();
     this.button6 = new System.Windows.Forms.Button();
     this.pnlSound = new System.Windows.Forms.Panel();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.trackBar1 = new System.Windows.Forms.TrackBar();
     this.label4 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.button5 = new System.Windows.Forms.Button();
     this.button4 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.btnSaveMp3 = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.lstRender = new System.Windows.Forms.ListBox();
     this.chkNPC = new System.Windows.Forms.CheckBox();
     this.chkMob = new System.Windows.Forms.CheckBox();
     this.chkReactor = new System.Windows.Forms.CheckBox();
     this.chkPortal = new System.Windows.Forms.CheckBox();
     this.button2 = new System.Windows.Forms.Button();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.txtType = new System.Windows.Forms.TextBox();
     this.pnlPicture = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.lblUOL = new System.Windows.Forms.LinkLabel();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.renderContainer = new System.Windows.Forms.SplitContainer();
     this.picRender = new System.Windows.Forms.PictureBox();
     this.cmdCloseRender = new System.Windows.Forms.Button();
     this.cmdSaveRender = new System.Windows.Forms.Button();
     this.cmdRedrawRender = new System.Windows.Forms.Button();
     this.lstRenders = new System.Windows.Forms.ListBox();
     this.chkReactorr = new System.Windows.Forms.CheckBox();
     this.chkPortalr = new System.Windows.Forms.CheckBox();
     this.chkMobr = new System.Windows.Forms.CheckBox();
     this.chkNPCr = new System.Windows.Forms.CheckBox();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.label2 = new System.Windows.Forms.Label();
     this.treeView2 = new System.Windows.Forms.TreeView();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.fullExtractPanel = new System.Windows.Forms.Panel();
     this.label6 = new System.Windows.Forms.Label();
     this.extractCount = new System.Windows.Forms.Label();
     this.extractBar = new System.Windows.Forms.ProgressBar();
     this.extractCancel = new System.Windows.Forms.Button();
     this.extractStart = new System.Windows.Forms.Button();
     this.button9 = new System.Windows.Forms.Button();
     this.menuStrip1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.pnlSound.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
     this.pnlPicture.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.renderContainer.Panel1.SuspendLayout();
     this.renderContainer.Panel2.SuspendLayout();
     this.renderContainer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picRender)).BeginInit();
     this.statusStrip1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.fullExtractPanel.SuspendLayout();
     this.SuspendLayout();
     //
//.........这里部分代码省略.........
开发者ID:davidyj,项目名称:starhome,代码行数:101,代码来源:MainForm.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(PicQueryForm));
     this.queryBtn = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.timeEdit1 = new DevExpress.XtraEditors.TimeEdit();
     this.timeEdit2 = new DevExpress.XtraEditors.TimeEdit();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.imageList2 = new System.Windows.Forms.ImageList(this.components);
     this.bestPicListView = new System.Windows.Forms.ListView();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.pictureBoxFace = new System.Windows.Forms.PictureBox();
     this.labelCaptureLoc = new System.Windows.Forms.Label();
     this.labelCaptureTime = new System.Windows.Forms.Label();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.axVLCPlugin21 = new AxAXVLC.AxVLCPlugin2();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.pictureBoxWholeImg = new System.Windows.Forms.PictureBox();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButtonFirstPage = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonPrePage = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonNextPage = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonLastPage = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabelCurPage = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxPageSize = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonPlayVideo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel 

鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
C# Forms.StatusStrip类代码示例发布时间:2022-05-24
下一篇:
C# Forms.SaveFileDialog类代码示例发布时间: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