问题标签 [jradiobutton]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - 更改 JCheckBox/JRadioButton 选择颜色
有没有办法改变复选框/单选按钮的选择颜色?
java - JRadioButton 中的 JComboBox
假设我想将 a JComboBox
(或更一般的 a JPanel
,也许?)添加到 a JRadioButton
,最简单的方法是什么?
伪明智地,其中一个包含多个选项的单选按钮组看起来像:
O 天气
O 派对
O {meta, pseudo}-科学
O 动物
其中 {} 将是一个下拉列表。这里的技巧是,如果单击下拉列表或标签“-science”,单选按钮将被激活并显示 UI 边框和所有这些花哨的东西。
谢谢 :)
java - Use JRadioButtons to set two text fields
Very new to Java here. How do I use a JRadioButton to set two different text fields? The three buttons are:
1. 7 at 5.35%
2. 15 at 5.5%
3. 30 at 5.75%
Choice 1 sets field1 to 7 and field2 to 5.35
Choice 2 sets field1 to 15 and field2 to 5.5
Choice 3 sets field1 to 30 and field2 to 5.75
What's the fastest and easiest way to write this code? Seems easy enough, but I'm having a hell of a time with the JRadioButtons.
Thanks.
EDIT: Here's the code. Looks like I'm almost there, however, I still can't get the radio buttons to put the data in the fields. Says I need to change the type to int, but if I do that it's not an enterable field anymore...
java - 如何让我的单选按钮在文本字段中设置数据?
无法使这些单选按钮工作。我希望他们在选择一个按钮时设置两个文本字段。我错过了什么?
另外,为什么我的代码没有正确发布到这个论坛?
java - JRadioButton itemlistener 未触发
您好,我的 Japplet 正在使用一个 JComboBox 和 5 个 JRadioButtons 在小程序上进行绘制和绘制。目前一切正常,除了我的 JRadioButtons 在选择按钮时不调用 itemStateChanged() 。所以在小程序上我可以点击一个按钮,但它不会触发。我的组合框也在使用 itemlistener 界面并且它可以工作,但无论我尝试了什么,我都无法获得发送信息/触发的按钮。
我注意到需要单击两次才能选择一个按钮,并希望问题出在其中。
This is for a homework problem and if I could use an actionperformed and actionlistener I would :(. I need to use itemlistener. Below are examples of how I'm calling my radiobuttons, adding them to the shapes buttongroup, and adidng the buttons to the container c.
Thanks for any help!
Sorry to anyone reading this but because it was homework I'm not 100% sure I can keep the code up, PM me if you need help understanding it!
java - 用一个 actionListener 监听多个 JRadioButton
我有两个 JRadioButtons,它们将用于以各种方式对 JList 中的对象进行排序。它们都是同一个 ButtonGroup 的成员。但是,我想用一个动作监听器来监听两个按钮,然后遍历它们以查看选择了哪个按钮。这样做最有效的方法是什么?
java - Java - pass value of one radio button that selected to another frame
Is there any code that I can use to pass value of selected radio button to another frame?
This is my code:
java - 确定选择什么 JRadioButton 的最佳方法是什么?
目前我正在以这种方式获得选定的按钮,但如果这是正确/最佳的方法,我不会。也许有比这更容易或面向对象的东西。
java - 矩形Java Swing单选按钮?
我想在 Java Swing 应用程序中创建一组按钮,就像您在绘画程序中的典型工具面板中获得的一样。也就是一组小的方形按钮,每个都包含一个图标,只有一个被按下,当你按下另一个按钮时,第一个被取消选择。我想了很多解决方案,但没有一个看起来很简单/优雅。
这听起来像是 JRadioButton 的工作,但如果你在其中添加一个图标,你仍然会得到一个小圆圈,这在空间上是相当低效的。我想一个选择是为 JRadioButton 找到替代的外观或绘画代码。
另一种选择可能是将 JButton 添加到 ButtonGroup,可能将 JToggleButton.ToggleButtonModel 设置为模型,但这并没有达到预期的效果,因为标准 JButton 的绘制代码在选择时不会保持按下状态。可能可以修改 JButton 代码来执行此操作。就像使其绘画“选中”的方式与“按下”一样。
第三种选择是使用普通的 JButton,并添加一个通用的鼠标侦听器来保持按下或不按下,并在按钮之间传达更改。
任何人都可以就实现目标的最佳方法提出建议吗?我错过的一个简单方法是最好的,但是关于这三种选择中哪一种最好的建议以及如何开始的指示也会很有用。
java - 如何增加 JRadioButtons 和 JCheckBoxes 的大小?
我有一个带有单选按钮和复选框的清单,我想让圆圈和框比它们的默认大小大一点。