2

我问的原因是Visual Studio Express在选择“添加新项目”时缺少此项目。

因此,我想手动创建它,但我不知道要添加什么代码。

如果具有专业或更高版本的人会粘贴添加“组件类”时生成的 C# 代码,我真的会很高兴

解决方案

使用答案中的代码,但要获得组件的可视化部分,必须创建用户控件,而不仅仅是一个常规类。

4

1 回答 1

3

代码部分

组件1.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;

namespace blabla
{
    public partial class Component1 : Component
    {
        public Component1()
        {
            InitializeComponent();
        }

        public Component1(IContainer container)
        {
            container.Add(this);

            InitializeComponent();
        }
    }
}

编辑:

Component1.Designer.cs

namespace blabla
{
    partial class Component1
    {
        /// <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 Component 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()
        {
            components = new System.ComponentModel.Container();
        }

        #endregion
    }
}

但是有一个视觉部分你会错过......

于 2012-05-03T08:00:37.977 回答