-5

winformsとVS2010を使用してウィザードを実装したいと思います。

このチュートリアルはありますが、Visual StudioとC#を初めて使用するため、よくわかりません。

誰かが私を助けてくれますか?

私の主な問題は、このチュートリアルのどこにリストを配置するかわからないことです。

すべてのコードを1つのクラスに入れる必要がありますか?または1つのform.csで?それはどのように分けられますか?

グリーツ

Bl!tz

4

2 に答える 2

1

ウィザードのページごとに UserControl を作成する必要があるように見えます (プロジェクトを右クリックし、[New... User Control] をクリックします)。また、UserControl に IWizardPage を実装する必要があります。単一のフォームである WizardHost があるよりも。

あなたの質問に答えるために、ウィザードの各ページに 1 つのフォームと UserControl があります。

于 2012-06-28T11:12:15.987 に答える
0

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

于 2012-06-28T11:11:01.547 に答える