我爱我家
运行作用
| [Visual Basic] <STAThread()> _ Shared Sub Main() ' Starts the application. Application.Run(New Form1()) End Sub Sub button1_Click(sender As object, e As System.EventArgs) ' Populates a list box with three numbers. Dim i As Integer = 3 Dim j As Integer For j = 1 To i - 1 listBox1.Items.Add(j) Next ' Checks to see whether the user wants to exit the application. ' If not, adds another number to the list box. While (MessageBox.Show("Exit application?", "", MessageBoxButtons.YesNo) = _ DialogResult.No) ' Increments the counter and adds the number to the list box. i = i + 1 listBox1.Items.Add(i) End While ' The user wants to exit the application. Close everything down. Application.Exit() End Sub [C#] public static void Main(string[] args) { // Starts the application. Application.Run(new Form1()); } protected void button1_Click(object sender, System.EventArgs e) { // Populates a list box with three numbers. int i = 3; for(int j=1; j<=i; j++) { listBox1.Items.Add(j); } /* Determines whether the user wants to exit the application. * If not, adds another number to the list box. */ while (MessageBox.Show("Exit application?", "", MessageBoxButtons.YesNo) == DialogResult.No) { // Increments the counter ands add the number to the list box. i++; listBox1.Items.Add(i); } // The user wants to exit the application. Close everything down. Application.Exit(); } [C++] public: static void main() { // Starts the application. Application::Run(new Form1()); } protected: void button1_Click(Object* sender, System::EventArgs* e) { // Populates a list box with three numbers. int i = 3; for (int j=1; j<=i; j++) { listBox1->Items->Add(__box(j)); } /* Determines whether the user wants to exit the application. * If not, adds another number to the list box. */ while (MessageBox::Show(S"Exit application?", S"", MessageBoxButtons::YesNo) == DialogResult::No) { // Increments the counter ands add the number to the list box. i++; listBox1->Items->Add(__box(i)); } // The user wants to exit the application. Close everything down. Application::Exit(); } |
发布时间:2008-03-26 评论 (
0) 点击 (
)



