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.
ラベル、テキストボックスなど、さまざまな属性を持つパネルがあります。このパネルの内容を印刷するにはどうすればよいですか? すべての助けに感謝します
コンソールに出力したり、プリンターに出力したりしますか? 次のように、パネル内のコントロールを反復処理できます。
Dim panelControl As System.Windows.Forms.Control For Each panelControl In Me.Panel1.Controls Console.WriteLine(panelControl.Text) Next