Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーコントロールが使用されるフォームのボタンのすべてのリストを持つプロパティを持つユーザーコントロールを作成したいので、C#でユーザーコントロールを使用しています
このようなもの?
public IEnumerable<Button> Buttons { get { List<Button> buttons = new List<Button>(); foreach (Control ctrl in ParentForm.Controls) { Button btn = ctrl as Button; if (btn != null) { buttons.Add(btn); } } return buttons; } }