Skip to content

DTselikis/Salon-Management

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 

Repository files navigation

Salon Management

A simple desktop application to manage your customer base

Table of contents

Features

Customer base

You can keep track of your customers by creating a record for each one of them including their personal details and notes.

Export

You can export your local DB into .xml files to be able to easily migrate your customer base to any other environment you want.

Backups

The program automatically keeps daily and monthly backups so you don’t miss anything! Daily backups will be deleted after 7 days of the day of their creations Monthly backups will be deleted after 90 days of the day of their creation

Customizable

You can change some aspects the environment such as the colors, text size, clock visibility etc.

(back to top)

Configuration

Logo

Homepage

If you want to add your business logo at the homepage, you should add a "logo.png" image file at Resources\Images\ and uncomment lines 12-18 of HomeControl.xaml

Program icon

If you want to add your business logo as the program icon, you should:

  • add a "logo.ico" icon file at Resources\Images\
  • add the following code in inside inside the Window property of the MainWindow.xaml:
Icon="Resources\Images\logo.ico"

(back to top)