2

私が尋ねている理由は、「新しい項目の追加」を選択したときにVisual Studio Expressにこの項目がないためです。

そのため、手動で作成したいのですが、どのコードを追加すればよいかわかりません。

「コンポーネント クラス」を追加するときに生成される C# コードを、プロ版以上のエディションをお持ちの方が貼り付けていただければ幸いです。

解決

回答のコードを使用しますが、コンポーネントの視覚的な部分を取得するには、通常のクラスだけでなく、ユーザー コントロールを作成する必要があります。

4

1 に答える 1

3

コード部分

Component1.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 に答える