Posts

Showing posts from June, 2018

There is No Best Programming Language

Image
Hey, what’s going on guys welcome to developer blog this one will be a short one. In this blog, I want to talk about what is the best programming language. I know when we want to learn new programming language we indeed search on google and also watch some YouTube videos on “Best Programming Language” (I did the same). So I am just sharing my opinion about this, what really need to do and which programming language you should start with. In my opinion, there is no best programming language in a general sense. I bring this up because of a lot of videos on YouTube and blogs out there on “Top Best Programming Language”. I am not targeting anything just in general sense which I have come to realize it’s pretty stupid because languages are used for different things. To give an example, PHP and C++ are very good programming languages, now C++ and PHP are not used even remotely similar to each other. C++ is very low level and very high-performance language which is used to create

How to write JavaFX CSS for tab pane

Image
We are writing code for this result     First, we have to change our side of tab pane so just select tab pane and change side of tab pane as shown in the figure.   Then clear all text from tabs in tab pane.   Offers on Dell Vostro 3468 Core i3 7th gen 14-inch Laptop (4GB/1TB/Windows 10/Black/1.75kg) Create CSS file on your computer/laptop and add CSS file in your tab pane. Now download icons you want to add in your tab pane. Already downloaded ;)     Let’s add CSS syntax for tab pane. Set height and width of tabs using width and height syntax. .tab-pane {      -fx-tab-min-height: 9em;     -fx-tab-max-height: 9em;     -fx-tab-min-width: 4em;     -fx-tab-max-width: 4em;     -fx-padding: 0 -1 -1 0 }     Apple MacBook Air Core i5 13.3-inch Laptop (8GB/128GB/MacOS Sierra/Silver/1.35kg) Now add ImageView in each tab . Add fx: id to all ImageView in SceneBuilder.     Add