├── App.xaml ├── Assets ├── Devices_Image.png ├── analytics_icon.png ├── calendar_icon.png ├── categories_icon.png ├── close_menu_def.png ├── close_menu_mo.png ├── dashboard_icon.png ├── delivery_icon.png ├── discount_icon.png ├── hamburger_icon.png ├── hamburger_mo.png ├── line_chart.png ├── max_def.png ├── max_mo.png ├── order32.png ├── product_icon.png ├── reports_icon.png ├── sales_icon.png ├── shutdown_def.png ├── shutdown_mo.png ├── stats_icon.png ├── stocks_icon.png └── user_icon.png ├── Converter.cs ├── DataTemplates.xaml ├── Fonts ├── OpenSans-Regular.ttf ├── OpenSans-SemiBold.ttf ├── Raleway-Medium.ttf ├── Raleway-SemiBold.ttf ├── Roboto-Medium.ttf ├── Roboto-Regular.ttf ├── Saira-Regular.ttf └── Saira-SemiBold.ttf ├── LICENSE ├── MainViewModel.cs ├── MainWindow.xaml ├── README.md ├── RelayCommand.cs ├── Source Code └── ResponsiveApp.rar └── Styles.xaml /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/App.xaml -------------------------------------------------------------------------------- /Assets/Devices_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/Devices_Image.png -------------------------------------------------------------------------------- /Assets/analytics_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/analytics_icon.png -------------------------------------------------------------------------------- /Assets/calendar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/calendar_icon.png -------------------------------------------------------------------------------- /Assets/categories_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/categories_icon.png -------------------------------------------------------------------------------- /Assets/close_menu_def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/close_menu_def.png -------------------------------------------------------------------------------- /Assets/close_menu_mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/close_menu_mo.png -------------------------------------------------------------------------------- /Assets/dashboard_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/dashboard_icon.png -------------------------------------------------------------------------------- /Assets/delivery_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/delivery_icon.png -------------------------------------------------------------------------------- /Assets/discount_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/discount_icon.png -------------------------------------------------------------------------------- /Assets/hamburger_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/hamburger_icon.png -------------------------------------------------------------------------------- /Assets/hamburger_mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/hamburger_mo.png -------------------------------------------------------------------------------- /Assets/line_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/line_chart.png -------------------------------------------------------------------------------- /Assets/max_def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/max_def.png -------------------------------------------------------------------------------- /Assets/max_mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/max_mo.png -------------------------------------------------------------------------------- /Assets/order32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/order32.png -------------------------------------------------------------------------------- /Assets/product_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/product_icon.png -------------------------------------------------------------------------------- /Assets/reports_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/reports_icon.png -------------------------------------------------------------------------------- /Assets/sales_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/sales_icon.png -------------------------------------------------------------------------------- /Assets/shutdown_def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/shutdown_def.png -------------------------------------------------------------------------------- /Assets/shutdown_mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/shutdown_mo.png -------------------------------------------------------------------------------- /Assets/stats_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/stats_icon.png -------------------------------------------------------------------------------- /Assets/stocks_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/stocks_icon.png -------------------------------------------------------------------------------- /Assets/user_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Assets/user_icon.png -------------------------------------------------------------------------------- /Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Converter.cs -------------------------------------------------------------------------------- /DataTemplates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/DataTemplates.xaml -------------------------------------------------------------------------------- /Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Fonts/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Fonts/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /Fonts/Raleway-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Fonts/Raleway-Medium.ttf -------------------------------------------------------------------------------- /Fonts/Raleway-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Fonts/Raleway-SemiBold.ttf -------------------------------------------------------------------------------- /Fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Fonts/Saira-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Fonts/Saira-Regular.ttf -------------------------------------------------------------------------------- /Fonts/Saira-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Fonts/Saira-SemiBold.ttf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/LICENSE -------------------------------------------------------------------------------- /MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/MainViewModel.cs -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/README.md -------------------------------------------------------------------------------- /RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/RelayCommand.cs -------------------------------------------------------------------------------- /Source Code/ResponsiveApp.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Source Code/ResponsiveApp.rar -------------------------------------------------------------------------------- /Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Responsive-UI-Design/HEAD/Styles.xaml --------------------------------------------------------------------------------