Designing E-Wallet Desktop application in C#

designing e-wallet: A digital wallet (or electronic wallet) is a financial transaction application that runs on mobile devices. It securely stores your payment information and passwords. These applications allow you to pay when you’re shopping using your device so that you don’t need to carry your cards around.

In this tutorial, We’ll learn how to design a dark user interface for an e-wallet in visual c#, using Bunifu Ui Framework.

Tools Required:

  1. Visual Studio 2012 or later version.
  2. Bunifu Ui Framework.
  3. Pichon App (Optional) for icons.

Bunifu Tools Used:

  1. Panel Control.
  2. Ellipse Control.
  3. Bunifu Buttons.
  4. Picture box.

Introduction:

The Bunifu framework is a .NET library that can be used for developing desktop applications in C# or VB.NET languages. The framework contains classes for creating windows forms, designing dialogs, implementing menus and toolbars, handling events, using graphics and multimedia components, and many more features.

Steps to Design E-Wallet in C#:

Open Visual Studio and create a new Windows Forms Application in Visual C#.

Go to the solution explorer and right-click on the project file and click on Manage Nuget Packages.

Click on the browse tab and search for Bunifu and from the search result, install Bunifu.WinForms. When the installation is completed, Open Form1 and go to the toolbox and search for Bunifu Ellipse Control and drag it into your form.

This will remove the default borders from the form and will add a round corner effect to the form. You can change the ellipse radius from the properties of Ellipse control.

Designing Top and Left Menu:

Now add a Bunifu Panel control from the toolbox and change the dock property to left and resize it according to your requirement. This panel will work as a container for the left-side menu.

Add another bunifu panel into the form and dock it to the top. This will work as the panel header of our main form.

Pick a label control from the toolbox and place it on the left top corner of the header panel and change the font size and style. This will be the main title of our application. Do the same for the slogan of the app.

Now drag a Bunifu Textbox control from the toolbox and set the placeholder text property to Search activity or another. This will work as a search box in our application.

Add a Bunifu Button and customize it for the notification button and place it on the right side of the search textbox. Add a left icon of the button.

You can use Pichon App for free icons of any color. Just search for any icon and drag it to a folder in the file explorer of Windows.

Now copy the button to the left side panel and resize it. Change the icons of the button according to your need and copy the buttons as many times as you want.

Video Tutorial:

Watch a full video tutorial to learn how to design that interface in Visual Studio.

Dark E-Wallet App in C#

Source Code: