-
Notifications
You must be signed in to change notification settings - Fork 693
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hierarchical Navigation View (#2004)
* automation peer fixes * hnav core functionality * hooked up expanding and collapse events * fix indicator animation and file formatting * moved get parentnvi functiont to nv * updated indentation * added flyout closing logic, updated isChildSelected logic * added flyout header * addressed comments * added chevron to NVI (non-animating) * added tests, fixed overflow parent selection * animations and bug fixes - added selection indicator and chevron animations - fixed bugs in icon content, overflow selection, closing flyout * fixed some tests * fixed tests, fixed header, updated separator * fixed and updated tests * updated masters, clean up, disabled test * re-enable interaction test, updated scrolling masters * addressed some comments * addressed more comments * removed flyout title content presenter * clean up, top nav chevron update * masters update Co-authored-by: Ranjesh <[email protected]>
- Loading branch information
Showing
60 changed files
with
19,496 additions
and
6,334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
// DO NOT EDIT! This file was generated by CustomTasks.DependencyPropertyCodeGen | ||
#pragma once | ||
|
||
class NavigationViewItemBaseProperties | ||
{ | ||
public: | ||
NavigationViewItemBaseProperties(); | ||
|
||
void IsSelected(bool value); | ||
bool IsSelected(); | ||
|
||
static winrt::DependencyProperty IsSelectedProperty() { return s_IsSelectedProperty; } | ||
|
||
static GlobalDependencyProperty s_IsSelectedProperty; | ||
|
||
static void EnsureProperties(); | ||
static void ClearProperties(); | ||
}; |
Oops, something went wrong.