-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Add blade control #169
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
Add blade control #169
Conversation
Hi @NicoVermeir, I'm your friendly neighborhood Microsoft Pull Request Bot (You can call me MSBOT). Thanks for your contribution! TTYL, MSBOT; |
This is linked to #168 @NicoVermeir You need to resolve some conflicts. |
Documentation link: microsoft/UWPCommunityToolkit-docs#15 |
/// <summary> | ||
/// Identifies the <see cref="Element"/> dependency property. | ||
/// </summary> | ||
public static readonly DependencyProperty ElementProperty = DependencyProperty.Register("Element", typeof(UIElement), typeof(Blade), new PropertyMetadata(default(UIElement))); |
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.
Please use nameof(Element)
@NicoVermeir, Thanks for signing the contribution license agreement so quickly! Actual humans will now validate the agreement and then evaluate the PR. |
namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages | ||
{ | ||
/// <summary> | ||
/// An empty page that can be used on its own or navigated to within a Frame. |
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.
Can this be more descriptive (ie, not the template code)
unregistered tap event in blade updated comment in bladepage
LGTM |
1 similar comment
LGTM |
Hey, I do not get why Blade are clickable. I think they should not be |
@NicoVermeir I asked our design team to provide a guidance for the blade control sample. Are you ok to implement it if I give you the mockup? |
sure! |
really cool thanks! |
Added a blade control, similar to how the azure portal works. Also added sample in the app and updated docs