-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SampleApp updates and more #1624
Conversation
Add Focus on Xaml Pivot Item Selection Add Tracking for Internal Monaco Editor Exceptions
Update Monaco.Editor to 0.4.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving to move things forward, couple of comments, but nothing critical. Though did you test on XBox?
@@ -145,7 +145,7 @@ | |||
</ItemGroup> | |||
<ItemGroup> | |||
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included --> | |||
<Content Include="Assets\Helpers.png" /> | |||
<Content Include="Assets\Helpers_old.png" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's old about this now? ;)
Can it be removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, will removed
<Extension Category="windows.backgroundTasks" EntryPoint="Microsoft.Toolkit.Uwp.Samples.BackgroundTasks.TestBackgroundTask"> | ||
<BackgroundTasks> | ||
<Task Type="timer" /> | ||
</BackgroundTasks> | ||
</Extension> | ||
<uap:Extension Category="windows.protocol"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reason this moved down?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It must have moved down when the I've created an appx for testing.
|
||
namespace Microsoft.Toolkit.Uwp.SampleApp | ||
{ | ||
public static class XAMLHelper |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be AcrylicHelper
? Would help in readability when used.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had it named AcrylicHelper originaly, but I wanted to also add helpers for Reveal later on so renamed it to be more generic
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Name should be XamlHelper
|
||
public async Task StartSearch(string startingText = null) | ||
{ | ||
if (_searchBox == null || _searchBox.Visibility == Visibility.Visible) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it'd be actually nice if you hit 'enter' in the blank searchbox that it shows all the controls (it does this if you type something and then hit backspace).
Did you get Shane to test these changes on the XBox?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea, fixed. Tested it on Xbox too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not just show everything as soon as you click the search button and then filter down from there
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having the animation when filtering is very jarring. This should be disabled
When using the app with a narrow width, the menu button is confusing. I don't expect the items to be scrollable. I would expect the items to be in a standard menu when clicking the button |
Found a bug when in narrow mode.
Notice the menu button is still rotated 90 degrees. |
@skendrot, fixed the menu bug, good catch. Narrow view still needs improvement, will probably get that done for 2.2 |
Issue: #1539 #1592
PR Type
What kind of change does this PR introduce?
PR Checklist
Please check if your PR fulfills the following requirements:
What is the new behavior?
This PR introduces the following changes:
Does this PR introduce a breaking change?
Other information