1-用线程运行"Hello World"窗体

vb Source:

Imports System
Imports System.ComponentModel
Imports System.Drawing
Imports System.Windows.Forms

Namespace Microsoft.Samples.WinForms.VB.SimpleHelloWorld

    Public Class SimpleHelloWorld
        Inherits System.Windows.Forms.Form

        '运行该应用程序
        <STAThread()> Shared Sub Main()
            System.Windows.Forms.Application.Run(New SimpleHelloWorld())
        End Sub

        Public Sub New()
            MyBase.New()
            Me.Text = "Hello World"
        End Sub

    End Class

End Namespace

C# Source:

namespace Microsoft.Samples.WinForms.Cs.SimpleHelloWorld {
    using System;
    using System.Windows.Forms;

    public class SimpleHelloWorld : Form {

        [STAThread]
        public static int Main(string[] args) {
            Application.Run(new SimpleHelloWorld());
            return 0;
        }

        public SimpleHelloWorld() {
            this.Text = "Hello World";
        }
    }
}


 

在Java中,编写带有窗体界面的应用程序并在这个窗体上显示一个标签(Label)来显示"Hello World",通常会使用Swing库中的JFrame和JLabel组件。Swing是Java的一个图形用户界面工具包,它提供了创建窗口化应用程序的功能。 以下是使用Java Swing编写一个简单窗体界面并显示"Hello World"的示例代码: ```java import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.SwingUtilities; public class HelloWorldFrame extends JFrame { public HelloWorldFrame() { // 创建JLabel对象,并设置文本为"Hello World" JLabel label = new JLabel("Hello World", JLabel.CENTER); // 添加JLabel到窗体中 add(label); // 设置窗体的关闭行为为默认 setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // 设置窗体的大小 setSize(300, 200); // 设置窗体可见 setVisible(true); } public static void main(String[] args) { // 确保使用SwingUtilities.invokeLater来创建GUI // 这是为了确保GUI创建和更新在事件调度线程(EDT)中执行 SwingUtilities.invokeLater(new Runnable() { public void run() { new HelloWorldFrame(); } }); } } ``` 在这段代码中,首先导入了Swing库中的JFrame和JLabel类,然后创建了一个继承自JFrame的HelloWorldFrame类。在构造函数中,创建了一个JLabel对象,并设置了其文本为"Hello World"和居中对齐方式。然后,将这个标签添加到窗体中,并设置了窗体的基本属性,如关闭行为、大小和可见性。最后,在main方法中,使用`SwingUtilities.invokeLater`来确保GUI的创建和更新在事件调度线程(EDT)中执行,这是Swing编程的规范做法。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值