• Post category:StudyBullet-3
  • Reading time:23 mins read


Build Desktop Applications using Python, Java, C#

What you will learn

 

Python Development Setup

 

Build a Currency Converter with Python

 

Build a Music Player with Python

 

Build a Loan Calculator with Python

 

Java Development Setup

 

Build a word count tool with Java

 

Build a BMI Calculator with Java

 

Build a Tip Calculator with Java

 

C# Development Setup

 

Build a Paint Drawing App with C#

 

Build a Calculator with C#

 

Build a Volume Converter with C#

 

Python Development Setup

 

Build a Currency Converter with Python

 

Build a Music Player with Python

 

Build a Loan Calculator with Python

 

Java Development Setup

 

Build a word count tool with Java

 

Build a BMI Calculator with Java

 

Build a Tip Calculator with Java

 

C# Development Setup

 

Build a Paint Drawing App with C#

 


Get Instant Notification of New Courses on our Telegram channel.


Build a Calculator with C#

 

Build a Volume Converter with C#

Description

A desktop application developer is a programmer who writes code for software applications that

run natively on operating systems like macOS, Windows, and Linux, and  don’t need to be connected to the internet.

In this course we will be building desktop applications using Python, Java and C#

Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python’s simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.

Tkinter is the standard GUI library for Python. Python when combined with Tkinter provides a fast and easy way to create GUI  Desktop applications

Java is a programming language and computing platform first released by Sun Microsystems in 1995. There are lots of applications and websites that will not work unless you have Java installed, and more are created every day. Java is fast, secure, and reliable. From laptops to datacentres, game consoles to scientific supercomputers, cell phones to the Internet, Java is everywhere.

Java applications generally contain many mini programs with various functions. Some mini programs have a graphical user interface (GUI), if only a simple window or dialog box, and many mini programs have no GUI. The application itself, however, is likely to have a main GUI that consists of menus, buttons, tool bars, text fields, and other graphical features. The GUI is mainly for user input, whether the user clicks a button or types in information, and a GUI can provide the user with additional information. In addition, GUI components often display information back to the user.

To create the GUI, you use the Java Foundation Classes/Swing (JFC/Swing) and Abstract Window Toolkit (AWT) API. The many classes and interfaces in those packages allow you to easily create buttons, check-box objects, text fields, and other components, as well as components to organize them. By far the easiest way to create the frame and all the GUI components for your application is to use an integrated development environment (IDE),  such as the NetBeans IDE. This IDE allows you to drag and drop your components into place while it writes the complex component code for you.

C# (pronounced “See Sharp”) is a modern, object-oriented, and type-safe programming language. C# enables developers to build many types of secure and robust applications

C# Windows Forms is a UI framework for building Windows desktop apps. It provides one of the most productive ways to create desktop apps based on the visual designer provided in Visual Studio. Functionality such as drag-and-drop placement of visual controls makes it easy to build desktop apps.

A desktop application developer is a programmer who writes code for software applications that

run natively on operating systems like macOS, Windows, and Linux, and  don’t need to be connected to the internet.

In this course we will be building desktop applications using Python, Java and C#

Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python’s simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.

Tkinter is the standard GUI library for Python. Python when combined with Tkinter provides a fast and easy way to create GUI  Desktop applications

Java is a programming language and computing platform first released by Sun Microsystems in 1995. There are lots of applications and websites that will not work unless you have Java installed, and more are created every day. Java is fast, secure, and reliable. From laptops to datacentres, game consoles to scientific supercomputers, cell phones to the Internet, Java is everywhere.

Java applications generally contain many mini programs with various functions. Some mini programs have a graphical user interface (GUI), if only a simple window or dialog box, and many mini programs have no GUI. The application itself, however, is likely to have a main GUI that consists of menus, buttons, tool bars, text fields, and other graphical features. The GUI is mainly for user input, whether the user clicks a button or types in information, and a GUI can provide the user with additional information. In addition, GUI components often display information back to the user.

To create the GUI, you use the Java Foundation Classes/Swing (JFC/Swing) and Abstract Window Toolkit (AWT) API. The many classes and interfaces in those packages allow you to easily create buttons, check-box objects, text fields, and other components, as well as components to organize them. By far the easiest way to create the frame and all the GUI components for your application is to use an integrated development environment (IDE),  such as the NetBeans IDE. This IDE allows you to drag and drop your components into place while it writes the complex component code for you.

C# (pronounced “See Sharp”) is a modern, object-oriented, and type-safe programming language. C# enables developers to build many types of secure and robust applications

C# Windows Forms is a UI framework for building Windows desktop apps. It provides one of the most productive ways to create desktop apps based on the visual designer provided in Visual Studio. Functionality such as drag-and-drop placement of visual controls makes it easy to build desktop apps.

English
language
Content
Python Development Setup
Introduction
What is Python
What is Tkinter
Python Installation – Windows
Python Installation – Macs
Python Installation – Linux
installing Text Editor
Please Note
Install Sublime Text Editor
Install Visual Studio Code Text Editor
Install Atom Text Editor
Create a virtual environment on Windows
Activate a virtual environment on Windows
Create a virtual environment on Macs
Activate a virtual environment on Macs
Create virtual environment on Linux
Activate a virtual environment on Linux
Build a Currency Converter with Python
What we will create
Project design sketch
Creating a Python File
Building the app : Part 1
Building the app : Part 2
Building the app : Part 3
Building the app : Part 4
Building the app : Part 5
Testing the app
Build a Music Player with Python
What we will create
Project design sketch
Building the app: part 1
Building the app: part 2
Building the app: part 3
Building the app: part 4
Testing the app
Build a Loan Calculator with Python
What we will create
Project design sketch
Creating a Python file
Building the app: part 1
Building the app: part 2
Building the app: part 3
Building the app: part 4
Testing the app
Java Development Setup
What is Java
Installing NetBeans
Create a basic Java Program
Structure of a basic Java program
Java Packages
Build a word count tool with Java
Creating a Java Project
Designing the interface – Part 1
Designing the interface – Part 2
Styling the app
Renaming Variables
Programming the exit | clear buttons
Programming count button
Deploy and test app
Build a BMI Calculator with Java
Creating the project and JFrame
Building the interface – Part 1
Building the interface- Part 2
Renaming Variables
Programming exit button
Programming clear button
Programming the logic – Part 1
Programming the logic – Part 2
Testing the app
Build a Tip Calculator with Java
Creating the project
Building the interface
Customizing the interface – Part 1
Customizing the interface – Part 2
Programming clear | exit button
Programming the logic
C# Development Setup
What is C#
What is Visual Studio
Visual Studio Installation Requirements
Installing Visual Studio
Visual studio workload
Creating a new windows forms project
Build a Paint Drawing App with C#
Creating a new Windows Forms Project
Designing the interface – Part 1
Designing the interface – Part 2
Create Variables and Event Handlers
Rename event handlers
Programming the drawing function
Programming the saving function
Build a Calculator with C#
Create a new windows forms project
Change form properties
Designing the interface – Part 1
Designing the interface – Part 2
Create a button click event
Clear the default zero
Create methods for operators
Create methods for the equal button
Write code for the logic
Build a Volume Converter with C#
Project design
Create a new windows forms project
Adding controls to form
Rename text property controls
Rename Name property controls
Write code for event handlers
Test App
Customize app
Run the app outside visual studio
Python Development Setup
Introduction
What is Python
What is Tkinter
Python Installation – Windows
Python Installation – Macs
Python Installation – Linux
installing Text Editor
Please Note
Install Sublime Text Editor
Install Visual Studio Code Text Editor
Install Atom Text Editor
Create a virtual environment on Windows
Activate a virtual environment on Windows
Create a virtual environment on Macs
Activate a virtual environment on Macs
Create virtual environment on Linux
Activate a virtual environment on Linux
Build a Currency Converter with Python
What we will create
Project design sketch
Creating a Python File
Building the app : Part 1
Building the app : Part 2
Building the app : Part 3
Building the app : Part 4
Building the app : Part 5
Testing the app
Build a Music Player with Python
What we will create
Project design sketch
Building the app: part 1
Building the app: part 2
Building the app: part 3
Building the app: part 4
Testing the app
Build a Loan Calculator with Python
What we will create
Project design sketch
Creating a Python file
Building the app: part 1
Building the app: part 2
Building the app: part 3
Building the app: part 4
Testing the app
Java Development Setup
What is Java
Installing NetBeans
Create a basic Java Program
Structure of a basic Java program
Java Packages
Build a word count tool with Java
Creating a Java Project
Designing the interface – Part 1
Designing the interface – Part 2
Styling the app
Renaming Variables
Programming the exit | clear buttons
Programming count button
Deploy and test app
Build a BMI Calculator with Java
Creating the project and JFrame
Building the interface – Part 1
Building the interface- Part 2
Renaming Variables
Programming exit button
Programming clear button
Programming the logic – Part 1
Programming the logic – Part 2
Testing the app
Build a Tip Calculator with Java
Creating the project
Building the interface
Customizing the interface – Part 1
Customizing the interface – Part 2
Programming clear | exit button
Programming the logic
C# Development Setup
What is C#
What is Visual Studio
Visual Studio Installation Requirements
Installing Visual Studio
Visual studio workload
Creating a new windows forms project
Build a Paint Drawing App with C#
Creating a new Windows Forms Project
Designing the interface – Part 1
Designing the interface – Part 2
Create Variables and Event Handlers
Rename event handlers
Programming the drawing function
Programming the saving function
Build a Calculator with C#
Create a new windows forms project
Change form properties
Designing the interface – Part 1
Designing the interface – Part 2
Create a button click event
Clear the default zero
Create methods for operators
Create methods for the equal button
Write code for the logic
Build a Volume Converter with C#
Project design
Create a new windows forms project
Adding controls to form
Rename text property controls
Rename Name property controls
Write code for event handlers
Test App
Customize app
Run the app outside visual studio