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


C# Forms.SplitContainer类代码示例

本文整理汇总了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类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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.ISupportInitialize)(this.timeEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit2.Properties)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxFace)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axVLCPlugin21)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWholeImg)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // queryBtn
     //
     this.queryBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.queryBtn.Location = new System.Drawing.Point(724, 26);
     this.queryBtn.Name = "queryBtn";
     this.queryBtn.Size = new System.Drawing.Size(86, 23);
     this.queryBtn.TabIndex = 0;
     this.queryBtn.Text = "查询";
     this.queryBtn.UseVisualStyleBackColor = true;
     this.queryBtn.Click += new System.EventHandler(this.queryBtn_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 31);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(41, 12);
     this.label1.TabIndex = 1;
     this.label1.Text = "监控点";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(184, 31);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(23, 12);
     this.label2.TabIndex = 2;
//.........这里部分代码省略.........
开发者ID:dalinhuang,项目名称:appcollection,代码行数:101,代码来源:PicQueryForm.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();
     this.settingsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.rolesBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtInstanceRoleCount = new System.Windows.Forms.TextBox();
     this.txtOsfamily = new System.Windows.Forms.TextBox();
     this.txtOsversion = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.listboxRoles = new System.Windows.Forms.ListBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label4 = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.dgvRoleSettings = new System.Windows.Forms.DataGridView();
     this.dgvCertificates = new System.Windows.Forms.DataGridView();
     this.certsbindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.panel3 = new System.Windows.Forms.Panel();
     this.btnRejectSettings = new System.Windows.Forms.Button();
     this.btnAcceptSettings = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.settingsBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rolesBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvRoleSettings)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvCertificates)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.certsbindingSource)).BeginInit();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.groupBox1);
     this.splitContainer1.Panel1.Controls.Add(this.listboxRoles);
     this.splitContainer1.Panel1.Controls.Add(this.panel1);
     this.splitContainer1.Panel1.Controls.Add(this.panel2);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
     this.splitContainer1.Size = new System.Drawing.Size(1024, 538);
     this.splitContainer1.SplitterDistance = 279;
     this.splitContainer1.TabIndex = 22;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txtInstanceRoleCount);
     this.groupBox1.Controls.Add(this.txtOsfamily);
     this.groupBox1.Controls.Add(this.txtOsversion);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 289);
     this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.groupBox1.Size = new System.Drawing.Size(230, 249);
     this.groupBox1.TabIndex = 23;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Configuration Details";
     //
     // txtInstanceRoleCount
     //
     this.txtInstanceRoleCount.Location = new System.Drawing.Point(123, 96);
     this.txtInstanceRoleCount.Name = "txtInstanceRoleCount";
     this.txtInstanceRoleCount.Size = new System.Drawing.Size(100, 23);
     this.txtInstanceRoleCount.TabIndex = 8;
     this.txtInstanceRoleCount.TextChanged += new System.EventHandler(this.txtInstanceRoleCount_TextChanged);
     //
     // txtOsfamily
     //
     this.txtOsfamily.Location = new System.Drawing.Point(123, 67);
     this.txtOsfamily.Name = "txtOsfamily";
//.........这里部分代码省略.........
开发者ID:RyanTBerry,项目名称:WindowsAzureDeploymentTracker,代码行数:101,代码来源:ServiceConfigViewer.designer.cs

示例14: InitializeComponent

 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlMensajes));
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.txtPara = new System.Windows.Forms.RichTextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtFecha = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.txtDe = new System.Windows.Forms.TextBox();
     this.txtAsunto = new System.Windows.Forms.TextBox();
     this.txtMensaje = new System.Windows.Forms.RichTextBox();
     this.icon = new System.Windows.Forms.DataGridViewImageColumn();
     this.asunto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.destino = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecha = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.mensaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.emailDestino = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.origen = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.codigoUsuario = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.txtEmpresa = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     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.BackColor = System.Drawing.Color.White;
     this.splitContainer1.Panel1.Controls.Add(this.dataGridView1);
     this.splitContainer1.Panel1MinSize = 250;
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.BackColor = System.Drawing.Color.White;
     this.splitContainer1.Panel2.Controls.Add(this.txtEmpresa);
     this.splitContainer1.Panel2.Controls.Add(this.txtPara);
     this.splitContainer1.Panel2.Controls.Add(this.label2);
     this.splitContainer1.Panel2.Controls.Add(this.txtFecha);
     this.splitContainer1.Panel2.Controls.Add(this.label1);
     this.splitContainer1.Panel2.Controls.Add(this.txtDe);
     this.splitContainer1.Panel2.Controls.Add(this.txtAsunto);
     this.splitContainer1.Panel2.Controls.Add(this.txtMensaje);
     this.splitContainer1.Panel2MinSize = 50;
     this.splitContainer1.Size = new System.Drawing.Size(752, 340);
     this.splitContainer1.SplitterDistance = 250;
     this.splitContainer1.TabIndex = 0;
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToResizeRows = false;
     this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridView1.BackgroundColor = System.Drawing.Color.White;
     this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dataGridView1.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
     this.dataGridView1.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.icon,
     this.asunto,
     this.destino,
     this.fecha,
     this.mensaje,
     this.emailDestino,
     this.origen,
     this.codigoUsuario});
     this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView1.EnableHeadersVisualStyles = false;
     this.dataGridView1.Location = new System.Drawing.Point(0, 0);
     this.dataGridView1.MultiSelect = false;
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.ReadOnly = true;
     this.dataGridView1.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.dataGridView1.RowHeadersVisible = false;
     this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridView1.Size = new System.Drawing.Size(250, 340);
     this.dataGridView1.TabIndex = 0;
     //
     // txtPara
     //
     this.txtPara.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPara.BackColor = System.Drawing.Color.White;
     this.txtPara.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtPara.Font = new System.Drawing.Font("Calibri", 11F);
     this.txtPara.Location = new System.Drawing.Point(73, 120);
//.........这里部分代码省略.........
开发者ID:eduardo-salazar,项目名称:sag,代码行数:101,代码来源:ControlMensajes.designer.cs

示例15: InitializeComponent

 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用主键编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmUserAdmin));
     this.helpProvider = new System.Windows.Forms.HelpProvider();
     this.grdUser = new System.Windows.Forms.DataGridView();
     this.colSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colUserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colRealName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDepartment = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEmail = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colTelephone = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colMobile = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDefaultRole = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEnabled = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.colDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnSetPassword = new System.Windows.Forms.Button();
     this.btnClose = new System.Windows.Forms.Button();
     this.btnProperty = new System.Windows.Forms.Button();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnAdd = new System.Windows.Forms.Button();
     this.lblContents = new System.Windows.Forms.Label();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.btnSearch = new System.Windows.Forms.Button();
     this.chkEnabled = new System.Windows.Forms.CheckBox();
     this.ucTableSort = new DotNet.WinForm.Common.WinControls.UCTableSort();
     this.btnBatchSave = new System.Windows.Forms.Button();
     this.btnRoleUser = new System.Windows.Forms.Button();
     this.picBug = new System.Windows.Forms.PictureBox();
     this.picSetting = new System.Windows.Forms.PictureBox();
     this.picImport = new System.Windows.Forms.PictureBox();
     this.picExport = new System.Windows.Forms.PictureBox();
     this.btnInvertSelect = new System.Windows.Forms.Button();
     this.btnSelectAll = new System.Windows.Forms.Button();
     this.btnSetOrganize = new System.Windows.Forms.Button();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.splUser = new System.Windows.Forms.SplitContainer();
     this.tvOrganize = new System.Windows.Forms.TreeView();
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picBug)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picSetting)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picImport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picExport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splUser)).BeginInit();
     this.splUser.Panel1.SuspendLayout();
     this.splUser.Panel2.SuspendLayout();
     this.splUser.SuspendLayout();
     this.SuspendLayout();
     //
     // grdUser
     //
     this.grdUser.AllowUserToAddRows = false;
     this.grdUser.AllowUserToDeleteRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.AliceBlue;
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(168)))), ((int)(((byte)(168)))), ((int)(((byte)(255)))));
     this.grdUser.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.grdUser.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.grdUser.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.grdUser.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdUser.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSelected,
     this.colUserName,
     this.colCode,
     this.colRealName,
     this.colDepartment,
     this.colEmail,
     this.colTelephone,
     this.colMobile,
     this.colDefaultRole,
     this.colEnabled,
     this.colDescription});
     this.grdUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdUser.GridColor = System.Drawing.SystemColors.Control;
     this.grdUser.Location = new System.Drawing.Point(0, 0);
     this.grdUser.MultiSelect = false;
     this.grdUser.Name = "grdUser";
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(188)))), ((int)(((byte)(188)))), ((int)(((byte)(255)))));
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     this.grdUser.RowsDefaultCellStyle = dataGridViewCellStyle3;
     this.grdUser.RowTemplate.Height = 23;
     this.grdUser.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdUser.Size = new System.Drawing.Size(741, 511);
     this.grdUser.TabIndex = 4;
//.........这里部分代码省略.........
开发者ID:huoxudong125,项目名称:DotNet,代码行数:101,代码来源:FrmUserAdmin.designer.cs


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