gpt4 book ai didi

c# - 如何在继承的 WinForm 中将控件添加到容器

转载 作者:太空狗 更新时间:2023-10-30 00:07:57 29 4
gpt4 key购买 nike

我在另一个项目中有一个基本表单,它对我们所有的 WinForms 程序强制执行相同的外观和感觉。我继承了那个 BaseForm,创建了我自己的模板 BaseView。我的这个模板有额外的控件,例如 ProgressBar、Timer 和 TableLayoutPanel。

我现在想继承我的 BaseView 并使用设计器来添加我的程序特定控件,但是我不能将面板或任何其他控件之类的东西放入其中。我已经尝试了一些建议,例如确保基本表单的组件是公开的,但无济于事 - 大多数 TLP 的属性仍然是灰色的。

有人能给我一些建议吗?非常感谢!


partial class BaseView
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;

/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region Windows Form Designer generated code

/// <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(BaseView));
this.tableLayoutPanel_Form = new System.Windows.Forms.TableLayoutPanel();
this.panel_Buttons = new System.Windows.Forms.Panel();
this.panel_MainBody = new System.Windows.Forms.Panel();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.timer_ProgressBar = new System.Windows.Forms.Timer(this.components);
this.tableLayoutPanel_Form.SuspendLayout();
this.SuspendLayout();
//
// lblFormId
//
this.lblFormId.AutoSize = false;
this.lblFormId.Location = new System.Drawing.Point(390, 9);
this.lblFormId.Size = new System.Drawing.Size(98, 13);
this.lblFormId.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// btnClose
//
this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Location = new System.Drawing.Point(447, 5);
this.btnClose.Size = new System.Drawing.Size(41, 21);
this.btnClose.TabIndex = 4;
//
// tableLayoutPanel_Form
//
this.tableLayoutPanel_Form.ColumnCount = 1;
this.tableLayoutPanel_Form.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel_Form.Controls.Add(this.panel_Buttons, 0, 2);
this.tableLayoutPanel_Form.Controls.Add(this.panel_MainBody, 0, 1);
this.tableLayoutPanel_Form.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel_Form.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel_Form.Name = "tableLayoutPanel_Form";
this.tableLayoutPanel_Form.RowCount = 3;
this.tableLayoutPanel_Form.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
this.tableLayoutPanel_Form.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel_Form.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
this.tableLayoutPanel_Form.Size = new System.Drawing.Size(496, 322);
this.tableLayoutPanel_Form.TabIndex = 26;
//
// panel_Buttons
//
this.panel_Buttons.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel_Buttons.Location = new System.Drawing.Point(3, 295);
this.panel_Buttons.Name = "panel_Buttons";
this.panel_Buttons.Size = new System.Drawing.Size(490, 24);
this.panel_Buttons.TabIndex = 0;
//
// panel_MainBody
//
this.panel_MainBody.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel_MainBody.Location = new System.Drawing.Point(3, 33);
this.panel_MainBody.Name = "panel_MainBody";
this.panel_MainBody.Size = new System.Drawing.Size(490, 256);
this.panel_MainBody.TabIndex = 1;
//
// progressBar
//
this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.progressBar.Location = new System.Drawing.Point(383, 324);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(112, 21);
this.progressBar.TabIndex = 27;
//
// timer_ProgressBar
//
this.timer_ProgressBar.Interval = 700;
this.timer_ProgressBar.Tick += new System.EventHandler(this.timer_Tick);
//
// BaseView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.CancelButton = this.btnClose;
this.ClientSize = new System.Drawing.Size(496, 346);
this.Controls.Add(this.progressBar);
this.Controls.Add(this.tableLayoutPanel_Form);
this.Cursor = System.Windows.Forms.Cursors.Default;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MinimumSize = new System.Drawing.Size(512, 384);
this.Name = "BaseView";
this.Controls.SetChildIndex(this.btnClose, 0);
this.Controls.SetChildIndex(this.tableLayoutPanel_Form, 0);
this.Controls.SetChildIndex(this.lblFormId, 0);
this.Controls.SetChildIndex(this.lblFormDescription, 0);
this.Controls.SetChildIndex(this.progressBar, 0);
this.tableLayoutPanel_Form.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();

}

#endregion

private System.Windows.Forms.ProgressBar progressBar;
private System.Windows.Forms.Timer timer_ProgressBar;
public System.Windows.Forms.TableLayoutPanel tableLayoutPanel_Form;
public System.Windows.Forms.Panel panel_Buttons;
public System.Windows.Forms.Panel panel_MainBody;
}

最佳答案

This MSDN 文章给了我答案。

“并非所有控件都支持从基本窗体的视觉继承。以下控件不支持本演练中描述的场景:WebBrowser、ToolStrip、ToolStripPanel、TableLayoutPanel、FlowLayoutPanel、DataGridView。无论您使用何种修饰符(私有(private)、 protected 或公共(public)),继承形式的这些控件始终是只读的。”

我使用停靠面板和 SplitContainer 而不是 TLP,现在我可以将任何我想要的东西放入其中。

关于c# - 如何在继承的 WinForm 中将控件添加到容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15092025/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com