All translations

Enter a message name below to show all available translations.

Message

Found one translation.

NameCurrent message text
 h Japanese (ja)[[Image:QtDesigner3-BeforeLayoutManagement.png|thumb|350px]] ここまでに配置したウィジットには名前を付けていませんでした。後でプログラム内で参照する時に便利なように内部的な名前を設定するのは非常に良い事です。ラベルはアクションを全く起こさないので名前を付ける必要は有りませんが、他のウィジットは名前を付ける必要が有ります。It is the case now for our text boxes. We'll need to manipulate the data from the three input widgets (i.e. read the text) so we should give them a name. 名前は簡単なものかつ意味の有るもので無ければなりません。プロパティエディタの name プロパティで名前を設定する事ができます。ここでは一番上の LineEdit を ''nameBox''、次の LineEdit を ''mailBox''、そして ComboBox を ''commBox'' と名付ける事にしましょう。これにより、コメントにアクセスすることができるようになります。So click on each <menuchoice>LineEdit</menuchoice> and then besides <menuchoice>Name</menuchoice> in the Property Editor write <code>nameBox</code> and <code>mailBox</code>. Then click on the <menuchoice>ComboBox</menuchoice> and name it <code>commBox</code>.