7

ラジオボタンをレイアウトするカスタムコントロールを作成しています(ラジオボタンである必要はありません。これを行う方法を学ぼうとしているだけなので、複数のボタンを含む可能性のある、より複雑なものを作成できます。 (他のいくつかのコントロールと同様に)Itemsプロパティを介して追加されるコントロールのリスト)。

プロジェクトをビルドし、これをコンポーネントパネルからフォームにドラッグして、Itemsプロパティを介してラジオボタンを追加できます。残念ながら、次のいずれかを行わない限り、これはデザイナーで更新されません。

  • プロジェクトを2〜3回再構築します
  • Designerでフォームを閉じて再度開きます

最初は、Initializeの後にコンストラクターに含まれるフォームにこれらを配置するロジックがありましたが、それが機能していなかったため、Form_Loadに移動しました。

私は何が欠けていますか?上記のオプションは短期的な回避策であり、解決策ではありません。

RBLTest.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WFCL_Library
{
    public partial class RBLTest : UserControl
    {
        private List<RadioButton> _items;

        private int leftSpacing = 100;
        private int topSpacing = 25;

        public RBLTest()
        {
            _items = new List<RadioButton>();
            InitializeComponent();
        }

        private void RadioButtonList_Load(object sender, EventArgs e)
        {
            int curLeftPos = 0;
            int curTopPos = 0;
            foreach (RadioButton rb in _items)
            {
                rb.Location = new Point(curLeftPos, curTopPos);
                rb.Size = new Size(85, 17);

                curLeftPos += leftSpacing;

                if (curLeftPos > this.Width)
                {
                    curLeftPos = 0;
                    curTopPos += topSpacing;
                }

                this.Controls.Add(rb);                
            }
        }

        [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
        public List<RadioButton> Items
        {
            get
            {
                return _items;
            }
            set
            {
                _items = value;
            }
        }
    }       
}

RBLTest.Designer.cs

namespace WFCL_Library
{
    partial class RBLTest
    {
        /// <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()
        {
            this.SuspendLayout();
            // 
            // RBLTest
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Name = "RBLTest";
            this.Size = new System.Drawing.Size(407, 44);
            this.Load += new System.EventHandler(this.RadioButtonList_Load);
            this.ResumeLayout(false);

        }

        #endregion

    }
}
4

2 に答える 2

4

Loadデザイナツールを使用してコントロールを追加すると、のインスタンスUserControlが作成され、イベントが発生するため、イベントまたはコンストラクタを使用しないでくださいLoad。あなたの場合、これが起こったとき_itemはまだ空です。もう1つの問題は、リストのシリアル化に問題があるため、配列を使用することです。

public partial class RBLTest : UserControl {
    private RadioButton[] _items;

    private int leftSpacing = 100;
    private int topSpacing = 25;

    public RBLTest( ) {
        InitializeComponent( );
    }

    [DesignerSerializationVisibility( DesignerSerializationVisibility.Content )]
    public RadioButton[] Items {
        get {
            return _items;
        }
        set {
            _items = value;

            int curLeftPos = 0;
            int curTopPos = 0;
            foreach ( RadioButton rb in _items ) {
                rb.Location = new Point( curLeftPos, curTopPos );
                rb.Size = new Size( 85, 17 );

                curLeftPos += leftSpacing;

                if ( curLeftPos > this.Width ) {
                    curLeftPos = 0;
                    curTopPos += topSpacing;
                }

                this.Controls.Add( rb );
            }
        }
    }
}

フォームデザイナでの結果:

ここに画像の説明を入力してください

于 2012-09-13T20:55:48.467 に答える
0

その理由は、LoadイベントでのみControlsCollectionにコントロールを追加しているためです。これは、私がグーグルで検索したWinFormsでのコンテナーコントロールの作成に関するチュートリアルです。http: //www.codeproject.com/Articles/9238/WinForms-Custom-Container-Control

于 2012-09-13T20:54:50.073 に答える