当前位置: 首页 > 文档资料 > GWT 入门教程 >

RadioButton

优质
小牛编辑
124浏览
2023-12-01

介绍 (Introduction)

RadioButton小部件表示互斥的选择单选按钮。

Class 声明 (Class Declaration)

以下是com.google.gwt.user.client.ui.RadioButton类的声明 -

public class RadioButton
   extends CheckBox

CSS样式规则 (CSS Style Rules)

以下默认CSS样式规则将应用于所有RadioButton小部件。 您可以根据自己的要求覆盖它。

.gwt-RadioButton {} 

类构造函数 (Class Constructors)

Sr.No.构造函数和描述
1

RadioButton(java.lang.String name)

创建与特定组名关联的新广播。

2

RadioButton(java.lang.String name,java.lang.String label)

创建与特定组关联的新广播,并使用给定的HTML标签进行初始化。

3

RadioButton(java.lang.String name,java.lang.String label, boolean asHTML)

创建与特定组关联的新单选按钮,并使用给定标签初始化(可选地视为HTML)。

Class Methods

Sr.No.功能名称和描述
1

void setName(java.lang.String name)

更改此单选按钮的组名称。

方法继承 (Methods Inherited)

该类继承以下类中的方法 -

  • com.google.gwt.user.client.ui.UIObject

  • com.google.gwt.user.client.ui.Widget

  • com.google.gwt.user.client.ui.FocusWidget

  • com.google.gwt.user.client.ui.CheckBox

  • java.lang.Object

RadioButton小部件示例

此示例将指导您完成在GWT中显示RadioButton Widget的使用的简单步骤。 按照以下步骤更新我们在GWT - Create Application的GWT应用程序GWT - Create Application章节 -

描述
1com.

包下创建一个名为HelloWorld的项目,如GWT - Create Application一章中所述。
2修改HelloWorld.gwt.xmlHelloWorld.cssHelloWorld.htmlHelloWorld.java ,如下所述。 保持其余文件不变。
3编译并运行应用程序以验证实现的逻辑的结果。

以下是修改后的模块描述符src/com.

/HelloWorld.gwt.xml 。

<?xml version = "1.0" encoding = "UTF-8"?>
<module rename-to = 'helloworld'>
   <!-- Inherit the core Web Toolkit stuff.                        -->
   <inherits name = 'com.google.gwt.user.User'/>
   <!-- Inherit the default GWT style sheet.                       -->
   <inherits name = 'com.google.gwt.user.theme.clean.Clean'/>
   <!-- Specify the app entry point class.                         -->
   <entry-point class = 'com.

.client.HelloWorld'/> <!-- Specify the paths for translatable code --> <source path = 'client'/> <source path = 'shared'/> </module>

以下是修改后的样式表文件war/HelloWorld.css

body {
   text-align: center;
   font-family: verdana, sans-serif;
}
h1 {
   font-size: 2em;
   font-weight: bold;
   color: #777777;
   margin: 40px 0px 70px;
   text-align: center;
}
.gwt-RadioButton { 
   color:green;   
}

以下是修改后的HTML主机文件war/HelloWorld.html

<html>
   <head>
      <title>Hello World</title>
      <link rel = "stylesheet" href = "HelloWorld.css"/>
      <script language = "javascript" src = "helloworld/helloworld.nocache.js">
      </script>
   </head>
   <body>
      <h1>RadioButton Widget Demonstration</h1>
      <div id = "gwtContainer"></div>
   </body>
</html>

让我们有以下Java文件src/com.

/HelloWorld.java ,它将演示RadioButton小部件的使用。

package com.

.client; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.user.client.ui.RadioButton; import com.google.gwt.user.client.ui.RootPanel; import com.google.gwt.user.client.ui.VerticalPanel; public class HelloWorld implements EntryPoint { public void onModuleLoad() { // Create some radio buttons, all in one group 'radioGroup'. RadioButton radioButton1 = new RadioButton("radioGroup", "First"); RadioButton radioButton2 = new RadioButton("radioGroup", "Second"); RadioButton radioButton3 = new RadioButton("radioGroup", "Third"); // Check 'First' by default. radioButton1.setValue(true); //disable 'Second' radio button radioButton2.setEnabled(false); // Add toggle button to the root panel. VerticalPanel panel = new VerticalPanel(); panel.setSpacing(10); panel.add(radioButton1); panel.add(radioButton2); panel.add(radioButton3); RootPanel.get("gwtContainer").add(panel); } }

一旦准备好完成所有更改,让我们像在GWT - 创建应用程序章节中那样在开发模式下编译和运行应用程序 。 如果您的应用程序一切正常,这将产生以下结果 -

GWT RadioButton小工具