Hello. How to use fillRoundRect. It doesnt work, the text get covered
@kanakrt92103 жыл бұрын
Damnnn this is gooddd! Also try doing jCalendar and jTable
@LaingRaven3 жыл бұрын
Ok bro
@goxy50463 жыл бұрын
@@LaingRaven Noooo first plz jFreechart gantt in jPanel :)
@saileshlimbu23733 жыл бұрын
As always you are the best bro.
@LaingRaven3 жыл бұрын
Thank
@mateomartinezg.93213 жыл бұрын
Wonderful textFields 👍🏽
@LaingRaven3 жыл бұрын
Thank
@Micodex Жыл бұрын
Excellent, thank you very much. A question, how could I attach it to the controls palette as a .jar? Thank you very much again
@LaingRaven Жыл бұрын
You can check this kzbin.info/www/bejne/mmKzaGCla65seNEsi=Om63grGXl6YkmGEf
@SomeOne-px9ex Жыл бұрын
amazing as always but i wanna ask you why you used timing library instead of timer class in swing?
@LaingRaven Жыл бұрын
timing use for create animation it calculating time differences and we can set duration..., see this sample : github.com/JFormDesigner/FlatLaf/blob/b6207bafde36327498e4c9a08b98229a0606690b/flatlaf-core/src/main/java/com/formdev/flatlaf/util/Animator.java#L248-L257
@SomeOne-px9ex Жыл бұрын
@@LaingRaven explain
@darmgim13013 жыл бұрын
is a JFormattedTextField like this possible? please! I have tried changing the extended class and it works great for me, except with the text when resetting it which is always maintained.
@LaingRaven3 жыл бұрын
To clear text you can use JFormattedTextField.setValue(null);
@LaingRaven3 жыл бұрын
or this : textFieldF1.addFocusListener(new FocusAdapter() { @Override public void focusLost(FocusEvent arg0) { if (textFieldF1.getText().equals("")) { textFieldF1.setValue(null); } } });
@darmgim13013 жыл бұрын
@@LaingRaven I'll try, thank!!!
@eliaspbareia2 жыл бұрын
you did the class JFormattedTextField?
@LaingRaven2 жыл бұрын
Ok I will check it.
@serenity-_-288 ай бұрын
What did u do in 18:14? how to access encapsulate fields?
@LaingRaven8 ай бұрын
Use Ctrl+Shift+Alt+E You can config it : Tools->Options->Keymap Select Profile as NetBeans and search for Encapsulate Fields then config with your shortcut
@fernandosantosdasilva33516 күн бұрын
Parabéns, Nesse vídeo, você poderia colocar uma legenda, sei que não tem áudio, mas seria interessante a legenda explicando passo a passo, o vídeo se tornaria uma videoaula.
@dragonfire8783 жыл бұрын
A question : how to How to change color kabel Text?
@LaingRaven3 жыл бұрын
check in method createHintText in textfield class you will see code : g2.setColor(new Color(150, 150, 150)); just change this color
@darmgim13013 жыл бұрын
Help! I set the font size 14, but the text entered is cut off. What I can do?
@LaingRaven3 жыл бұрын
Set your textfield height to default size, it will auto resize when font change.
@darmgim13013 жыл бұрын
@@LaingRaven Excellent! Thanks! One more question: to reduce the space between the text and the bottom border line?
@LaingRaven3 жыл бұрын
Change the code setborder in constuctor 20,3,10,3 mean top,left,bottom,right Edit number 10 to change space.
@darmgim13013 жыл бұрын
@@LaingRaven you are the best
@darmgim13013 жыл бұрын
a question: how to put input text bold but not labeltext? help!
@LaingRaven3 жыл бұрын
Check in method createHintText add this code : g2.setFont(getFont().deriveFont(0, getFont().getSize())); on g2.drawString()
@darmgim13013 жыл бұрын
@@LaingRaven very thanks! you are the best!
@Abdul-cp3vb2 жыл бұрын
Hi, You see for the line that the text sits on how do you change the default colour ive tried everything in the code but i cant seem to get it. Thank you!
@Abdul-cp3vb2 жыл бұрын
I thought it was just private Color lineColor = new Color((); but i changed it to private Color lineColor = new Color(255, 255, 255); and nothing happened
@Abdul-cp3vb2 жыл бұрын
Sorry just incase i was vague i mean the default colour of the line before it is seletected or hovered over the default grey colour
@LaingRaven2 жыл бұрын
Change in method void paint I use Color(150,150,150)
@antoniofarfan2653 жыл бұрын
Beautiful 😁👍🏻❤️👏🏻
@LaingRaven3 жыл бұрын
Thanks for visiting
@SCRIPTNEWBIE3 жыл бұрын
package org.jdesktop.animation.timing.Animator not found error. how to fix it
@LaingRaven3 жыл бұрын
Add library bro TimingFramework-0.55.jar
@SCRIPTNEWBIE3 жыл бұрын
@@LaingRaven okie bro
@LaingRaven3 жыл бұрын
Bro this timing library is in project ready.
@dewamademardana3 жыл бұрын
@@LaingRaven oke thank you bro
@dazzlepelobello9 ай бұрын
Question: how can i add the eye and unhide icons in password field?
@LaingRaven9 ай бұрын
You can check this : kzbin.info/www/bejne/l5SZe2OVnNKcapI
@dazzlepelobello9 ай бұрын
Thank youu@@LaingRaven
@peacock6703 Жыл бұрын
I reaaly need to know how to make Custom stuff in Java. !!!
@Katsuuuqt8 ай бұрын
How to add a method for replacing texthint font color?
@LaingRaven8 ай бұрын
Here you can change this : github.com/DJ-Raven/raven-project/blob/986148c15e60a39db14f3fd0bc4ed035cc881f48/src/textfield/TextField.java#L125
@Katsuuuqt8 ай бұрын
@@LaingRaven Thanks, I appreciate it!
@MrHappens-wl1rk Жыл бұрын
How change font size?
@arturomora8680 Жыл бұрын
How can I change the background of the text field?
@LaingRaven Жыл бұрын
use method setBackground(new java.awt.Color(...));
@arturomora8680 Жыл бұрын
@@LaingRaven It's that ir lets me change it, but for some reason when I puta the value of alpha or implement it I'm some way that is invisible I can't, how do I make the background transparent? Es que así me deja cambiarlo, pero por alguna razón al poner el valor de alpha o implementar de alguna manera que sea invisible no puedo, como hago que el background sea transparente? O poder bajarle la opacidad de alguna manera?
@LaingRaven Жыл бұрын
have you try this to make transparent background : txtfield.setBackground(new Color(0, 0, 0, 0));
@arturomora8680 Жыл бұрын
@@LaingRaven If you want, I'll send you the code so you can see what I'm implementing it in, it's just an interface It is that I have not used Java for a long time and only yesterday I started again Email? I need to change this pls xd
@arturomora8680 Жыл бұрын
By Messenger if you want
@herdian21653 жыл бұрын
Like android 😍
@LaingRaven3 жыл бұрын
:)
@yogipratama92853 жыл бұрын
Request jcombobox
@LaingRaven3 жыл бұрын
Ok next
@emersonbiag2 ай бұрын
// Method to retrieve the inputted text public String retrieveInputText() { return getText(); }
@ameen14509 ай бұрын
Please add eye button for password view
@LaingRaven9 ай бұрын
You can check this kzbin.info/www/bejne/l5SZe2OVnNKcapI
@ameen14509 ай бұрын
@@LaingRaven hey Bro... Can u design a restaurant dashboard.. In which left side of screen have a category list.. If we choose any category, need to see images of that food as many different types as small panels.. If we hover mouse, need to get details inside that box.. If we click, it will add to table
@serenity-_-288 ай бұрын
Question, im having problem with my setRenderingHints, it says "method setRenderingHints in class Graphics2d cannot be applied", how to fix it?