winformsとVS2010を使用してウィザードを実装したいと思います。
このチュートリアルはありますが、Visual StudioとC#を初めて使用するため、よくわかりません。
誰かが私を助けてくれますか?
私の主な問題は、このチュートリアルのどこにリストを配置するかわからないことです。
すべてのコードを1つのクラスに入れる必要がありますか?または1つのform.csで?それはどのように分けられますか?
グリーツ
Bl!tz
ウィザードのページごとに UserControl を作成する必要があるように見えます (プロジェクトを右クリックし、[New... User Control] をクリックします)。また、UserControl に IWizardPage を実装する必要があります。単一のフォームである WizardHost があるよりも。
あなたの質問に答えるために、ウィザードの各ページに 1 つのフォームと UserControl があります。
This is a simple example, use groupboxes, and set them all on visibility hidden, but only show the first one, then when u click the button u set the visibility of the first groupbox to hidden, and the set the visibility of the 2e one to show.
a groupbox can contain controls, so that u wont have to show or hide individual controls