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

C# Forms.ColumnHeader类代码示例

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

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



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

示例1: GetColumnsHeader

        public System.Windows.Forms.ColumnHeader[] GetColumnsHeader()
        {
            System.Windows.Forms.ColumnHeader[] columns = new System.Windows.Forms.ColumnHeader[4];

            System.Windows.Forms.ColumnHeader column;

            column = new System.Windows.Forms.ColumnHeader();
            column.Text = "Nombre";
            column.Width = 200;
            columns[0] = column;

            column = new System.Windows.Forms.ColumnHeader();
            column.Text = "Teléfono";
            column.Width = 150;
            columns[1] = column;

            column = new System.Windows.Forms.ColumnHeader();
            column.Text = "Email";
            column.Width = 150;
            columns[2] = column;

            column = new System.Windows.Forms.ColumnHeader();
            column.Text = "Dirección";
            column.Width = 150;
            columns[3] = column;

            return columns;
        }
开发者ID:enzoburga,项目名称:pimesoft,代码行数:28,代码来源:SeleccionadorClientes.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.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Свойства документа", System.Windows.Forms.HorizontalAlignment.Left);
			System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Пространство", System.Windows.Forms.HorizontalAlignment.Left);
			System.Windows.Forms.ColumnHeader columnHeader1;
			System.Windows.Forms.ColumnHeader columnHeader2;
			this.listView = new System.Windows.Forms.ListView();
			columnHeader1 = new System.Windows.Forms.ColumnHeader();
			columnHeader2 = new System.Windows.Forms.ColumnHeader();
			this.SuspendLayout();
			// 
			// listView
			// 
			this.listView.Activation = System.Windows.Forms.ItemActivation.OneClick;
			this.listView.CausesValidation = false;
			this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnHeader1,
            columnHeader2});
			this.listView.Dock = System.Windows.Forms.DockStyle.Fill;
			listViewGroup1.Header = "Свойства документа";
			listViewGroup1.Name = "common";
			listViewGroup2.Header = "Пространство";
			listViewGroup2.Name = "bytes";
			this.listView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
            listViewGroup1,
            listViewGroup2});
			this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
			this.listView.Location = new System.Drawing.Point(0, 0);
			this.listView.MultiSelect = false;
			this.listView.Name = "listView";
			this.listView.Size = new System.Drawing.Size(365, 302);
			this.listView.TabIndex = 0;
			this.listView.UseCompatibleStateImageBehavior = false;
			this.listView.View = System.Windows.Forms.View.Details;
			// 
			// columnHeader1
			// 
			columnHeader1.Text = "";
			columnHeader1.Width = 200;
			// 
			// columnHeader2
			// 
			columnHeader2.Text = "";
			columnHeader2.Width = 100;
			// 
			// ScenarioPropertiesDialog
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(365, 302);
			this.Controls.Add(this.listView);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
			this.MinimizeBox = false;
			this.Name = "ScenarioPropertiesDialog";
			this.ShowIcon = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Свойства сценария";
			this.ResumeLayout(false);

		}
开发者ID:xeno-by,项目名称:elf4b,代码行数:64,代码来源:ScenarioPropertiesDialog.Designer.cs


示例3: GetColumnsHeader

        public System.Windows.Forms.ColumnHeader[] GetColumnsHeader()
        {
            System.Windows.Forms.ColumnHeader[] columns = new System.Windows.Forms.ColumnHeader[5];

            System.Windows.Forms.ColumnHeader column;

            column = new System.Windows.Forms.ColumnHeader();
            column.Text = "Código";
            column.Width = 250;
            columns[0] = column;

            column = new System.Windows.Forms.ColumnHeader();
            column.Text = "Dirección";
            column.Width = 250;
            columns[1] = column;

            column = new System.Windows.Forms.ColumnHeader();
            column.Text = "Estado";
            column.Width = 250;
            columns[2] = column;

            column = new System.Windows.Forms.ColumnHeader();
            column.Text = "Partido";
            column.Width = 250;
            columns[3] = column;

            column = new System.Windows.Forms.ColumnHeader();
            column.Text = "Barrio";
            column.Width = 250;
            columns[4] = column;
            return columns;
        }
开发者ID:enzoburga,项目名称:pimesoft,代码行数:32,代码来源:SeleccionadorPropiedades.cs


示例4: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSpyware));
     this.spywareLst = new System.Windows.Forms.ListView();
     this.colSpyware = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colFilePath = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.SuspendLayout();
     //
     // spywareLst
     //
     resources.ApplyResources(this.spywareLst, "spywareLst");
     this.spywareLst.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colSpyware,
     this.colFilePath});
     this.spywareLst.Name = "spywareLst";
     this.spywareLst.UseCompatibleStateImageBehavior = false;
     this.spywareLst.View = System.Windows.Forms.View.Details;
     //
     // colSpyware
     //
     resources.ApplyResources(this.colSpyware, "colSpyware");
     //
     // colFilePath
     //
     resources.ApplyResources(this.colFilePath, "colFilePath");
     //
     // FrmSpyware
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.spywareLst);
     this.Name = "FrmSpyware";
     this.ShowIcon = false;
     this.ResumeLayout(false);
 }
开发者ID:nullkuhl,项目名称:fsu-dev,代码行数:39,代码来源:FormSpyware.designer.cs


示例5: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.deviceListVw = new System.Windows.Forms.ListView();
     this.cancelButton = new System.Windows.Forms.Button();
     this.okButton = new System.Windows.Forms.Button();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.SuspendLayout();
     //
     // deviceListVw
     //
     this.deviceListVw.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1});
     this.deviceListVw.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.deviceListVw.Location = new System.Drawing.Point(12, 12);
     this.deviceListVw.Name = "deviceListVw";
     this.deviceListVw.Size = new System.Drawing.Size(327, 108);
     this.deviceListVw.TabIndex = 0;
     this.deviceListVw.UseCompatibleStateImageBehavior = false;
     this.deviceListVw.View = System.Windows.Forms.View.Details;
     this.deviceListVw.SelectedIndexChanged += new System.EventHandler(this.deviceListVw_SelectedIndexChanged);
     //
     // cancelButton
     //
     this.cancelButton.Location = new System.Drawing.Point(216, 136);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(75, 23);
     this.cancelButton.TabIndex = 1;
     this.cancelButton.Text = "cancel";
     this.cancelButton.UseVisualStyleBackColor = true;
     this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
     //
     // okButton
     //
     this.okButton.Location = new System.Drawing.Point(48, 136);
     this.okButton.Name = "okButton";
     this.okButton.Size = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex = 2;
     this.okButton.Text = "OK";
     this.okButton.UseVisualStyleBackColor = true;
     this.okButton.Click += new System.EventHandler(this.okButton_Click);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Name";
     this.columnHeader1.Width = 400;
     //
     // DeviceSelector
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(351, 180);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.deviceListVw);
     this.Name = "DeviceSelector";
     this.Text = "DeviceSelector";
     this.Load += new System.EventHandler(this.DeviceSelector_Load);
     this.ResumeLayout(false);
 }
开发者ID:yuanjunsc,项目名称:Telepresence-Robo,代码行数:63,代码来源:DeviceSelector.designer.cs


示例6: InitializeComponent

 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlProperties));
     this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.listViewProperties = new System.Windows.Forms.ListView();
     this.columnHeaderProperty = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // contextMenuStrip
     //
     this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copyToolStripMenuItem});
     this.contextMenuStrip.Name = "contextMenuStrip";
     resources.ApplyResources(this.contextMenuStrip, "contextMenuStrip");
     this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening);
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     resources.ApplyResources(this.copyToolStripMenuItem, "copyToolStripMenuItem");
     this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
     //
     // listViewProperties
     //
     this.listViewProperties.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeaderProperty,
     this.columnHeaderValue});
     this.listViewProperties.ContextMenuStrip = this.contextMenuStrip;
     resources.ApplyResources(this.listViewProperties, "listViewProperties");
     this.listViewProperties.FullRowSelect = true;
     this.listViewProperties.GridLines = true;
     this.listViewProperties.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listViewProperties.MultiSelect = false;
     this.listViewProperties.Name = "listViewProperties";
     this.listViewProperties.ShowItemToolTips = true;
     this.listViewProperties.UseCompatibleStateImageBehavior = false;
     this.listViewProperties.View = System.Windows.Forms.View.Details;
     //
     // columnHeaderProperty
     //
     resources.ApplyResources(this.columnHeaderProperty, "columnHeaderProperty");
     //
     // columnHeaderValue
     //
     resources.ApplyResources(this.columnHeaderValue, "columnHeaderValue");
     //
     // ControlProperties
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.listViewProperties);
     this.Name = "ControlProperties";
     this.contextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
开发者ID:plutext,项目名称:OpenDoPE-Mapping-WordAddIn,代码行数:63,代码来源:ControlProperties.designer.cs


示例7: InitializeComponent

    /// <summary> 
    /// Required method for Designer support - do not modify 
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      this.components = new System.ComponentModel.Container();
      System.Windows.Forms.ColumnHeader columnaNúmero;
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InterfaseListaDeElementos));
      System.Windows.Forms.ColumnHeader columnaTipo;
      System.Windows.Forms.ColumnHeader columnaDescripción;
      System.Windows.Forms.ColumnHeader columnaNombre;
      this.miOrdenadorDeColumnaDeLista = new GpsYv.ManejadorDeMapa.Interfase.OrdenadorDeColumnaDeLista(this.components);
      columnaNúmero = new System.Windows.Forms.ColumnHeader();
      columnaTipo = new System.Windows.Forms.ColumnHeader();
      columnaDescripción = new System.Windows.Forms.ColumnHeader();
      columnaNombre = new System.Windows.Forms.ColumnHeader();
      this.SuspendLayout();
      // 
      // columnaNúmero
      // 
      resources.ApplyResources(columnaNúmero, "columnaNúmero");
      // 
      // columnaTipo
      // 
      resources.ApplyResources(columnaTipo, "columnaTipo");
      // 
      // columnaDescripción
      // 
      resources.ApplyResources(columnaDescripción, "columnaDescripción");
      // 
      // columnaNombre
      // 
      resources.ApplyResources(columnaNombre, "columnaNombre");
      // 
      // miOrdenadorDeColumnaDeLista
      // 
      this.miOrdenadorDeColumnaDeLista.ItemsDeLaListaVirtual = null;
      this.miOrdenadorDeColumnaDeLista.Lista = this;
      // 
      // InterfaseListaDeElementos
      // 
      this.AccessibleDescription = null;
      this.AccessibleName = null;
      resources.ApplyResources(this, "$this");
      this.BackgroundImage = null;
      this.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnaNúmero,
            columnaTipo,
            columnaDescripción,
            columnaNombre});
      this.Font = null;
      this.FullRowSelect = true;
      this.GridLines = true;
      this.HideSelection = false;
      this.View = System.Windows.Forms.View.Details;
      this.VirtualMode = true;
      this.RetrieveVirtualItem += new System.Windows.Forms.RetrieveVirtualItemEventHandler(this.ObtieneItemDeLista);
      this.ResumeLayout(false);

    }
开发者ID:PatricioVidal,项目名称:GpsMapTools,代码行数:61,代码来源:InterfaseListaDeElementos.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.lvTask = new System.Windows.Forms.ListView();
     this.colTaskName = new System.Windows.Forms.ColumnHeader();
     this.colSource = new System.Windows.Forms.ColumnHeader();
     this.colTarget = new System.Windows.Forms.ColumnHeader();
     this.SuspendLayout();
     //
     // lvTask
     //
     this.lvTask.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colTaskName,
     this.colSource,
     this.colTarget});
     this.lvTask.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvTask.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvTask.FullRowSelect = true;
     this.lvTask.GridLines = true;
     this.lvTask.Location = new System.Drawing.Point(0, 0);
     this.lvTask.Name = "lvTask";
     this.lvTask.Size = new System.Drawing.Size(384, 244);
     this.lvTask.TabIndex = 1;
     this.lvTask.UseCompatibleStateImageBehavior = false;
     this.lvTask.View = System.Windows.Forms.View.Details;
     //
     // colTaskName
     //
     this.colTaskName.Text = "Name";
     this.colTaskName.Width = 100;
     //
     // colSource
     //
     this.colSource.Text = "Source";
     this.colSource.Width = 140;
     //
     // colTarget
     //
     this.colTarget.Text = "Target";
     this.colTarget.Width = 140;
     //
     // DisplayTaskForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(384, 244);
     this.Controls.Add(this.lvTask);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "DisplayTaskForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Display Task Form";
     this.Load += new System.EventHandler(this.DisplayTaskForm_Load);
     this.ResumeLayout(false);
 }
开发者ID:riverstore,项目名称:syncsharp,代码行数:58,代码来源:DisplayTaskForm.designer.cs


示例9: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmDetails));
     this.listview = new System.Windows.Forms.ListView();
     this.FileName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.Type = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.SuspendLayout();
     //
     // listview
     //
     this.listview.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.listview.BackColor = System.Drawing.SystemColors.Window;
     this.listview.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.FileName,
     this.Type});
     this.listview.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.listview.ForeColor = System.Drawing.SystemColors.ControlText;
     this.listview.FullRowSelect = true;
     this.listview.LabelWrap = false;
     this.listview.Location = new System.Drawing.Point(12, 12);
     this.listview.MultiSelect = false;
     this.listview.Name = "listview";
     this.listview.Size = new System.Drawing.Size(527, 188);
     this.listview.TabIndex = 50;
     this.listview.UseCompatibleStateImageBehavior = false;
     this.listview.View = System.Windows.Forms.View.Details;
     //
     // FileName
     //
     this.FileName.Text = "File Name";
     this.FileName.Width = 205;
     //
     // Type
     //
     this.Type.Text = "Location";
     this.Type.Width = 2000;
     //
     // FrmDetails
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(551, 218);
     this.Controls.Add(this.listview);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "FrmDetails";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Problem Details";
     this.Load += new System.EventHandler(this.frmDetails_Load);
     this.ResumeLayout(false);
 }
开发者ID:nullkuhl,项目名称:fsu-dev,代码行数:57,代码来源:FormDetails.designer.cs


示例10: InitializeComponent

		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.ColumnHeader colName;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GalleryComponentControl));
			this._toolStrip = new System.Windows.Forms.ToolStrip();
			this._listView = new ClearCanvas.Desktop.View.WinForms.GalleryComponentListViewControl();
			this._contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
			colName = new System.Windows.Forms.ColumnHeader();
			this.SuspendLayout();
			// 
			// colName
			// 
			resources.ApplyResources(colName, "colName");
			// 
			// _toolStrip
			// 
			this._toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
			this._toolStrip.ImageScalingSize = new System.Drawing.Size(24, 24);
			resources.ApplyResources(this._toolStrip, "_toolStrip");
			this._toolStrip.Name = "_toolStrip";
			// 
			// _listView
			// 
			this._listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            colName});
			this._listView.ContextMenuStrip = this._contextMenu;
			resources.ApplyResources(this._listView, "_listView");
			this._listView.InsertionBoxIndex = -1;
			this._listView.Name = "_listView";
			this._listView.ShowItemToolTips = true;
			this._listView.UseCompatibleStateImageBehavior = false;
			this._listView.ItemActivate += new System.EventHandler(this.OnItemActivate);
			this._listView.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.OnAfterLabelEdit);
			this._listView.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.OnPreviewKeyDown);
			this._listView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.OnKeyDown);
			// 
			// _contextMenu
			// 
			this._contextMenu.Name = "_contextMenu";
			resources.ApplyResources(this._contextMenu, "_contextMenu");
			// 
			// GalleryComponentControl
			// 
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this._listView);
			this.Controls.Add(this._toolStrip);
			this.Name = "GalleryComponentControl";
			this.ResumeLayout(false);
			this.PerformLayout();

		}
开发者ID:m-berkani,项目名称:ClearCanvas,代码行数:57,代码来源:GalleryComponentControl.Designer.cs


示例11: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lv_Services = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.SuspendLayout();
     //
     // lv_Services
     //
     this.lv_Services.CheckBoxes = true;
     this.lv_Services.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3});
     this.lv_Services.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lv_Services.Location = new System.Drawing.Point(0, 0);
     this.lv_Services.Name = "lv_Services";
     this.lv_Services.Size = new System.Drawing.Size(295, 425);
     this.lv_Services.TabIndex = 0;
     this.lv_Services.UseCompatibleStateImageBehavior = false;
     this.lv_Services.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Service";
     this.columnHeader1.Width = 110;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Port ";
     this.columnHeader2.Width = 80;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Protocol";
     this.columnHeader3.Width = 80;
     //
     // frmServiceList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(295, 425);
     this.ControlBox = false;
     this.Controls.Add(this.lv_Services);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmServiceList";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "ServiceList";
     this.ResumeLayout(false);
 }
开发者ID:mcorrientes,项目名称:Web-Security-Toolset,代码行数:56,代码来源:frmServiceList.designer.cs


示例12: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmShortcutFixer));
     this.shortcutsLst = new System.Windows.Forms.ListView();
     this.colName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colTarget = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colLocation = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colDescription = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.SuspendLayout();
     //
     // shortcutsLst
     //
     resources.ApplyResources(this.shortcutsLst, "shortcutsLst");
     this.shortcutsLst.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colName,
     this.colTarget,
     this.colLocation,
     this.colDescription});
     this.shortcutsLst.Name = "shortcutsLst";
     this.shortcutsLst.UseCompatibleStateImageBehavior = false;
     this.shortcutsLst.View = System.Windows.Forms.View.Details;
     //
     // colName
     //
     resources.ApplyResources(this.colName, "colName");
     //
     // colTarget
     //
     resources.ApplyResources(this.colTarget, "colTarget");
     //
     // colLocation
     //
     resources.ApplyResources(this.colLocation, "colLocation");
     //
     // colDescription
     //
     resources.ApplyResources(this.colDescription, "colDescription");
     //
     // FrmShortcutFixer
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.shortcutsLst);
     this.Name = "FrmShortcutFixer";
     this.ShowIcon = false;
     this.ResumeLayout(false);
 }
开发者ID:nullkuhl,项目名称:fsu-dev,代码行数:51,代码来源:FormShortcutFixer.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.lvresults = 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.SuspendLayout();
     //
     // lvresults
     //
     this.lvresults.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     this.lvresults.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvresults.FullRowSelect = true;
     this.lvresults.GridLines = true;
     this.lvresults.Location = new System.Drawing.Point(0, 0);
     this.lvresults.Name = "lvresults";
     this.lvresults.Size = new System.Drawing.Size(669, 201);
     this.lvresults.TabIndex = 1;
     this.lvresults.UseCompatibleStateImageBehavior = false;
     this.lvresults.View = System.Windows.Forms.View.Details;
     this.lvresults.DoubleClick += lvresults_DoubleClick;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "File";
     this.columnHeader1.Width = 561;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Line";
     this.columnHeader2.Width = 71;
     //
     // FindInFiles
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(669, 201);
     this.Controls.Add(this.lvresults);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "FindInFiles";
     this.ShowIcon = false;
     this.Text = "Search Results";
     this.ResumeLayout(false);
 }
开发者ID:samarjeet27,项目名称:ynoteclassic,代码行数:49,代码来源:SearchResults.designer.cs


示例14: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRegCleaner));
     this.badRegLst = new System.Windows.Forms.ListView();
     this.colRegKey = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colProblem = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.lblRegKeys = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // badRegLst
     //
     resources.ApplyResources(this.badRegLst, "badRegLst");
     this.badRegLst.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colRegKey,
     this.colProblem});
     this.badRegLst.Name = "badRegLst";
     this.badRegLst.UseCompatibleStateImageBehavior = false;
     this.badRegLst.View = System.Windows.Forms.View.Details;
     //
     // colRegKey
     //
     resources.ApplyResources(this.colRegKey, "colRegKey");
     //
     // colProblem
     //
     resources.ApplyResources(this.colProblem, "colProblem");
     //
     // lblRegKeys
     //
     resources.ApplyResources(this.lblRegKeys, "lblRegKeys");
     this.lblRegKeys.Name = "lblRegKeys";
     //
     // FormRegCleaner
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.badRegLst);
     this.Controls.Add(this.lblRegKeys);
     this.Name = "FormRegCleaner";
     this.ShowIcon = false;
     this.Load += new System.EventHandler(this.frmRegCleaner_Load);
     this.ResumeLayout(false);
 }
开发者ID:nullkuhl,项目名称:fsu-dev,代码行数:47,代码来源:FormRegCleaner.designer.cs


示例15: InitializeComponent

        /// <summary>
        /// This method is required for Windows Forms designer support.
        /// Do not change the method contents inside the source code editor. The Forms designer might
        /// not be able to load this method if it was changed manually.
        /// </summary>
        private void InitializeComponent()
        {
            this.listView1 = new System.Windows.Forms.ListView();
            this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
            this.SuspendLayout();
            // 
            // listView1
            // 
            this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2});
            this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listView1.Location = new System.Drawing.Point(0, 0);
            this.listView1.Name = "listView1";
            this.listView1.Size = new System.Drawing.Size(434, 316);
            this.listView1.TabIndex = 0;
            this.listView1.UseCompatibleStateImageBehavior = false;
            this.listView1.View = System.Windows.Forms.View.Details;
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "Date";
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "Message";
            this.columnHeader2.Width = 355;
            // 
            // LogViewer
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(434, 316);
            this.Controls.Add(this.listView1);
            this.Name = "LogViewer";
            this.Text = "LogViewer";
            this.ResumeLayout(false);

        }
开发者ID:Luigifan,项目名称:Skynet,代码行数:45,代码来源:LogViewer.Designer.cs


示例16: SortAscending

        /// <summary>
        /// Sorts the User list by UserDescription in Ascending order
        /// </summary>
        public void SortAscending()
        {
            System.Windows.Forms.ListView LV = new System.Windows.Forms.ListView();
            System.Windows.Forms.ColumnHeader cH = new System.Windows.Forms.ColumnHeader();
            cH.Width = 100;
            LV.Columns.Add(cH);
            LV.View = System.Windows.Forms.View.Details;
            LV.Sorting = System.Windows.Forms.SortOrder.Ascending;
            foreach(object x in List)
            {
                System.Windows.Forms.ListViewItem LVA = LV.Items.Add(((User)x).mvarDescription);
                LVA.Tag = x;
            }

            //LV.ListViewItemSorter = new OysterClassLibrary.ListViewItemComparer(0);

            List.Clear();
            LV.Sort();
            foreach(System.Windows.Forms.ListViewItem lvi in LV.Items)
            {
                List.Add(lvi.Tag);
            }
        }
开发者ID:CarverLab,项目名称:Oyster,代码行数:26,代码来源:Users.cs


示例17: GetColumnsHeader

        public System.Windows.Forms.ColumnHeader[] GetColumnsHeader()
        {
            System.Windows.Forms.ColumnHeader[] columns = new System.Windows.Forms.ColumnHeader[3];

            System.Windows.Forms.ColumnHeader column;

            column = new System.Windows.Forms.ColumnHeader();
            column.Text = "Inmobiliaria";
            column.Width = 250;
            columns[0] = column;

            column = new System.Windows.Forms.ColumnHeader();
            column.Text = "Contacto";
            column.Width = 250;
            columns[1] = column;

            column = new System.Windows.Forms.ColumnHeader();
            column.Text = "Telefono";
            column.Width = 250;
            columns[2] = column;

            return columns;
        }
开发者ID:enzoburga,项目名称:pimesoft,代码行数:23,代码来源:SeleccionadorInmobiliariaExterna.cs


示例18: 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.Fo 

鲜花

握手

雷人

路过

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

请发表评论

全部评论

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