├── App.xaml ├── Assets ├── img_about.png ├── img_acoustic.png ├── img_album.png ├── img_arrow.png ├── img_artist.png ├── img_electronic.png ├── img_exit.png ├── img_folder.png ├── img_genre.png ├── img_hiphop.png ├── img_history.png ├── img_home.png ├── img_hotkey.png ├── img_input.png ├── img_jazz.png ├── img_metal.png ├── img_movies.png ├── img_music.png ├── img_playlist.png ├── img_pop.png ├── img_rock.png ├── img_search.png ├── img_setting.png ├── img_songs.png ├── max_def.png ├── max_mo.png ├── shutdown_def.png └── shutdown_mo.png ├── Fonts ├── Orbitron-Medium.ttf └── Roboto-Light.ttf ├── LICENSE ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Navigation Menu App.rar ├── README.md └── Templates.xaml /App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Assets/img_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_about.png -------------------------------------------------------------------------------- /Assets/img_acoustic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_acoustic.png -------------------------------------------------------------------------------- /Assets/img_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_album.png -------------------------------------------------------------------------------- /Assets/img_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_arrow.png -------------------------------------------------------------------------------- /Assets/img_artist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_artist.png -------------------------------------------------------------------------------- /Assets/img_electronic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_electronic.png -------------------------------------------------------------------------------- /Assets/img_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_exit.png -------------------------------------------------------------------------------- /Assets/img_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_folder.png -------------------------------------------------------------------------------- /Assets/img_genre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_genre.png -------------------------------------------------------------------------------- /Assets/img_hiphop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_hiphop.png -------------------------------------------------------------------------------- /Assets/img_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_history.png -------------------------------------------------------------------------------- /Assets/img_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_home.png -------------------------------------------------------------------------------- /Assets/img_hotkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_hotkey.png -------------------------------------------------------------------------------- /Assets/img_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_input.png -------------------------------------------------------------------------------- /Assets/img_jazz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_jazz.png -------------------------------------------------------------------------------- /Assets/img_metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_metal.png -------------------------------------------------------------------------------- /Assets/img_movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_movies.png -------------------------------------------------------------------------------- /Assets/img_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_music.png -------------------------------------------------------------------------------- /Assets/img_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_playlist.png -------------------------------------------------------------------------------- /Assets/img_pop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_pop.png -------------------------------------------------------------------------------- /Assets/img_rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_rock.png -------------------------------------------------------------------------------- /Assets/img_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_search.png -------------------------------------------------------------------------------- /Assets/img_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_setting.png -------------------------------------------------------------------------------- /Assets/img_songs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/img_songs.png -------------------------------------------------------------------------------- /Assets/max_def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/max_def.png -------------------------------------------------------------------------------- /Assets/max_mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/max_mo.png -------------------------------------------------------------------------------- /Assets/shutdown_def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/shutdown_def.png -------------------------------------------------------------------------------- /Assets/shutdown_mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Assets/shutdown_mo.png -------------------------------------------------------------------------------- /Fonts/Orbitron-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Fonts/Orbitron-Medium.ttf -------------------------------------------------------------------------------- /Fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpDesignPro/WPF---Navigation-Menu-With-Sub-Menu/3275eec4dfb60f9a2fb2881568495100a96c016e/Fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Arun Mutharasu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 20 | 21 | 22 | 23 | 24 | 25 | 32 | 33 | 40 | 41 | 42 | 43 | 47 | 48 | 49 | 50 | 53 | 54 | 60 | 61 | 67 | 68 | 69 | 70 | 71 | 72 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 90 | 91 | 92 | 93 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 104 | 105 | 106 | 107 | 109 | 110 | 111 | 112 | 113 | 114 | 116 | 117 | 118 | 119 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 130 | 131 | 132 | 133 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 144 | 145 | 146 | 147 | 149 | 150 | 151 | 152 | 153 | 154 | 156 | 157 | 158 | 159 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 170 | 171 | 172 | 173 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 184 | 185 | 186 | 187 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 198 | 199 | 200 | 201 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 212 | 213 | 214 | 215 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 226 | 227 | 228 | 229 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 240 | 241 | 242 | 243 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 256 | 257 | 258 | 259 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 270 | 271 | 272 | 273 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 286 | 287 | 288 | 289 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 300 | 301 | 302 | 303 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 314 | 315 | 316 | 317 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 328 | 329 | 330 | 331 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 342 | 343 | 344 | 345 | 347 | 348 | 349 | 350 | 351 | 352 | 354 | 355 | 356 | 357 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 368 | 369 | 370 | 371 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 384 | 385 | 386 | 387 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 398 | 399 | 400 | 401 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 |